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.
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.
https://www.cryptoprice.pro/mcpSupports both SSE (Server-Sent Events) and Streamable HTTP transports. Authentication via Bearer token in the Authorization header.
Claude Desktop
Add to your claude_desktop_config.json file:
{
"mcpServers": {
"cryptoprice": {
"url": "https://www.cryptoprice.pro/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Cursor / VS Code Copilot
Add to your MCP settings:
{
"cryptoprice": {
"url": "https://www.cryptoprice.pro/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}All MCP requests require a valid API key. You can get one from your dashboard.
| Tool | Description |
|---|---|
web_search | Web search using OpenAI Search Preview API |
generate_image | AI image generation using Google Gemini |
edit_image | AI image editing using Google Gemini |
service_crypto_price_converter | Crypto price converter using Binance real-time data |
service_image_chart_analysis | AI chart technical analysis from screenshot |
service_portfolio_screenshot_insights | Portfolio screenshot analysis with AI evaluation |
service_heatmap_screenshot_analysis | Heatmap & liquidation map analysis with AI |
service_candlestick_pattern_detector | AI candlestick pattern detection from chart screenshot |
service_support_resistance_zones | AI support & resistance zone detection from chart screenshot |
Initialize Connection
POST https://www.cryptoprice.pro/mcp
{
"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
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}Call a Tool
POST https://www.cryptoprice.pro/mcp
{
"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.