Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

mcp-crypto-price

MCP.Pizza Chef: truss44

The mcp-crypto-price server is a Model Context Protocol (MCP) server that delivers real-time cryptocurrency data and market analysis by leveraging the CoinCap API. It enables MCP clients like Claude to fetch up-to-date crypto prices, analyze market trends, and access historical data through a streamlined interface. This server is ideal for developers and AI agents needing live crypto market context to enhance decision-making, trading strategies, or financial analysis workflows. Easy to integrate with MCP clients, it supports multi-step reasoning and dynamic data retrieval in real time.

Use This MCP server To

Fetch real-time cryptocurrency prices for analysis Track historical crypto market trends Analyze market capitalization and volume data Integrate live crypto data into AI workflows Support trading bots with up-to-date price info Provide market insights for financial reports Enable multi-step crypto data reasoning in agents

README

Crypto Price & Market Analysis MCP Server

smithery badge NPM Downloads

A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.

Usage

Add this configuration to your Claude Desktop config file:

  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-crypto-price": {
      "command": "npx",
      "args": ["-y", "mcp-crypto-price"]
    }
  }
}

Optional: CoinCap API Key

For higher rate limits, add an API key to your configuration:

{
  "mcpServers": {
    "mcp-crypto-price": {
      "command": "npx",
      "args": ["-y", "mcp-crypto-price"],
      "env": {
        "COINCAP_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Important Note: CoinCap is sunsetting their v2 API. This MCP supports both v2 and v3 APIs:

  • If you provide a COINCAP_API_KEY, it will attempt to use the v3 API first, falling back to v2 if necessary
  • Without an API key, it will use the v2 API (which will eventually be discontinued)
  • It's recommended to obtain an API key from pro.coincap.io/dashboard as the v2 API will be completely deactivated in the future

Launch Claude Desktop to start using the crypto analysis tools.

Tools

get-crypto-price

Gets current price and 24h stats for any cryptocurrency, including:

  • Current price in USD
  • 24-hour price change
  • Trading volume
  • Market cap
  • Market rank
get-market-analysis

Provides detailed market analysis including:

  • Top 5 exchanges by volume
  • Price variations across exchanges
  • Volume distribution analysis
  • VWAP (Volume Weighted Average Price)
get-historical-analysis

Analyzes historical price data with:

  • Customizable time intervals (5min to 1 day)
  • Support for up to 30 days of historical data
  • Price trend analysis
  • Volatility metrics
  • High/low price ranges

Sample Prompts

  • "What's the current price of Bitcoin?"
  • "Show me market analysis for ETH"
  • "Give me the 7-day price history for DOGE"
  • "What are the top exchanges trading BTC?"
  • "Show me the price trends for SOL with 1-hour intervals"

Project Inspiration

This project was inspired by Alex Andru's coincap-mcp project.

License

This project is licensed under the MIT License

mcp-crypto-price FAQ

How do I install the mcp-crypto-price server?
Install via npm using 'npx -y mcp-crypto-price' and configure it in your MCP client config file.
Which API does mcp-crypto-price use for data?
It uses the CoinCap API to provide real-time and historical cryptocurrency data.
Can I use mcp-crypto-price with different MCP clients?
Yes, it is compatible with any MCP client like Claude, supporting seamless integration.
How do I configure mcp-crypto-price on Windows?
Add the server configuration to '%APPDATA%/Claude/claude_desktop_config.json' as per usage instructions.
Does mcp-crypto-price support historical data queries?
Yes, it provides access to historical market trends and price data.
Is the data from mcp-crypto-price updated in real time?
Yes, it fetches live cryptocurrency prices and market data continuously.
Can mcp-crypto-price help with multi-step reasoning in AI agents?
Absolutely, it supplies dynamic crypto context enabling complex reasoning workflows.
Is mcp-crypto-price limited to specific cryptocurrencies?
No, it supports a wide range of cryptocurrencies available via the CoinCap API.