MCP Server Documentation

Sign In

MCP Server Documentation

Connect CryptoPrice AI tools to Claude Desktop, Cursor, VS Code Copilot, or any MCP-compatible client using the Model Context Protocol.

MCP Configuration File

Download the ready-to-use config file and add your API key.

Download config.json
What is MCP?

The Model Context Protocol (MCP) is an open standard that enables AI assistants to connect with external tools and data sources. CryptoPrice provides an MCP server that gives AI clients direct access to crypto analysis tools, web search, and image generation.

Once connected, your AI assistant can automatically use these tools when relevant β€” like looking up real-time crypto prices, analyzing chart screenshots, or generating images.

MCP Endpoint
URL
https://www.cryptoprice.pro/mcp

Supports both SSE (Server-Sent Events) and Streamable HTTP transports. Authentication via Bearer token in the Authorization header.

Quick Setup
Add the MCP server to your preferred AI client. Replace YOUR_API_KEY with your actual API key.

Claude Desktop

Add to your claude_desktop_config.json file:

json
{
  "mcpServers": {
    "cryptoprice": {
      "url": "https://www.cryptoprice.pro/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Cursor / VS Code Copilot

Add to your MCP settings:

json
{
  "cryptoprice": {
    "url": "https://www.cryptoprice.pro/mcp",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY"
    }
  }
}
Authentication

All MCP requests require a valid API key. You can get one from your dashboard.

Available Tools
These tools are accessible through the MCP server.
ToolDescription
web_searchWeb search using OpenAI Search Preview API
generate_imageAI image generation using Google Gemini
edit_imageAI image editing using Google Gemini
service_crypto_price_converterCrypto price converter using Binance real-time data
service_image_chart_analysisAI chart technical analysis from screenshot
service_portfolio_screenshot_insightsPortfolio screenshot analysis with AI evaluation
service_heatmap_screenshot_analysisHeatmap & liquidation map analysis with AI
service_candlestick_pattern_detectorAI candlestick pattern detection from chart screenshot
service_support_resistance_zonesAI support & resistance zone detection from chart screenshot
JSON-RPC Examples
For advanced usage, you can interact with the MCP server directly using JSON-RPC over HTTP.

Initialize Connection

POST https://www.cryptoprice.pro/mcp

json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "initialize",
  "params": {
    "protocolVersion": "2024-11-05",
    "capabilities": {},
    "clientInfo": {
      "name": "my-client",
      "version": "1.0.0"
    }
  }
}

List Tools

POST https://www.cryptoprice.pro/mcp

json
{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/list",
  "params": {}
}

Call a Tool

POST https://www.cryptoprice.pro/mcp

json
{
  "jsonrpc": "2.0",
  "id": 3,
  "method": "tools/call",
  "params": {
    "name": "web_search",
    "arguments": {
      "query": "Bitcoin price today",
      "language": "en",
      "max_results": 5
    }
  }
}

Looking for the REST API?

Check out the AI Agent API documentation for the traditional REST-based integration.

View API Docs