drio
Open app

Crypto Price & Market Analysis MCP Server

Source

A Model Context Protocol (MCP) server that provides real-time cryptocurrency analysis via CoinCap's API. Enables Claude and other MCP clients to fetch crypto prices, analyze market trends, and track historical data.

Catalog onlyCatalog onlySTDIO

Overview

MCP Crypto Price is a Model Context Protocol (MCP) server that provides real-time cryptocurrency analysis using CoinCap's API. It allows users to fetch crypto prices, analyze market trends, and track historical data.

To use MCP Crypto Price, clone the repository from GitHub, install the necessary dependencies, and configure it in your Claude Desktop config file. After setup, you can launch the server and start querying cryptocurrency data.

  • Real-time price data for various cryptocurrencies - Detailed market analysis including top exchanges and price variations - Historical price data analysis with customizable time intervals - Easy integration with Claude and other MCP clients
  1. Fetching current prices of cryptocurrencies like Bitcoin and Ethereum.
  2. Analyzing market trends and trading volumes across different exchanges.
  3. Tracking historical price data for investment analysis.

Add to your AI client

Use these steps to connect Crypto Price & Market Analysis MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-crypto-price-truss44": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-crypto-price-truss44"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-crypto-price-truss44": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-crypto-price-truss44"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-crypto-price-truss44": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-crypto-price-truss44"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-crypto-price-truss44": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-crypto-price-truss44"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-crypto-price-truss44": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-crypto-price-truss44"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-crypto-price-truss44": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-crypto-price-truss44"
      ]
    }
  }
}

FAQ

**What cryptocurrencies can I track?**

You can track any cryptocurrency available on CoinCap's API.

**Is there a limit on API requests?**

While the basic setup does not require an API key, using one can increase your rate limits.

**Can I run this on Windows?**

Yes! The setup instructions include steps for both MacOS and Windows.