Crypto Price & Market Analysis MCP Server

by truss44

39 stars
616 downloads
Not rated
GitHub

About

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.

Details

Author
truss44
GitHub stars
39
Downloads
616
Categories
Cloud Service, Other, Finance

- Real-time price, 24h stats, and market cap data
- Market analysis with top exchanges and VWAP
- Historical price data with customizable intervals
- Technical indicators: SMA, EMA, RSI, MACD, VWAP
- Cryptocurrency comparison of 2–5 assets side-by-side
- OHLCV candlestick data with multiple time intervals

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Crypto Price & Market Analysis MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure in Claude Desktop by adding the server with npx -y mcp-crypto-price and a COINCAP_API_KEY environment variable. Supports both STDIO and Streamable HTTP transports. For HTTP, run the server on port 3000 (default) and pass the API key as a query parameter. Obtain a free API key at pro.coincap.io/dashboard.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

McpServers

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

Crypto Price & Market Analysis MCP Server

smithery badge NPM Downloads

<a href="https://glama.ai/mcp/servers/jpqoejojnc">

</a>

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. Supports both STDIO and Streamable HTTP transports.

Requirements

- Node.js 22.14+
- CoinCap API key via COINCAP_API_KEY

What's New

- BREAKING: CoinCap v2 API removed. Now uses v3 API exclusively. A COINCAP_API_KEY is required (free tier available at pro.coincap.io/dashboard)
- Streamable HTTP transport added (while keeping STDIO compatibility)
- Smithery CLI scripts to build and run the HTTP server
- 6 new tools: assets-search, market-global, assets-compare, analysis-candlestick, price-convert, assets-info
- Hierarchical tool naming: All tools organized into category-prefixed names (price-, market-, assets-, analysis-)
- Output schemas: All tools now declare outputSchema with structuredContent for type-safe responses
- MCP best practices: isError flag on validation errors, server description, and asset://{symbol} resource template

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"],
      "env": {
        "COINCAP_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

If your MCP client requires launching via cmd.exe on Windows:

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

Development scripts

pnpm dev          # Development (HTTP server with hot reload via Smithery CLI)
pnpm build         # Compile TypeScript → dist/
pnpm format        # Format source files with Prettier
pnpm lint          # Check for lint errors (ESLint + typescript-eslint)
pnpm lint:fix      # Auto-fix lint errors
pnpm types:check   # TypeScript type-check without emitting files
pnpm test          # Run all tests with Vitest
pnpm test:coverage # Run tests with coverage report (Vitest)
pnpm inspector     # Open MCP inspector for interactive debugging

Run as Streamable HTTP server

You can run the server over HTTP for environments that support MCP over HTTP streaming.

- Dev server (recommended during development):

pnpm dev

- Build and run the HTTP server:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.