CoinCap MCP Server
The CoinCap MCP Server provides comprehensive cryptocurrency data and tools:
Asset Data: Real-time prices, historical price and market cap data, detailed asset info, and search/discovery by name, symbol, or address.
Market Data: List exchanges, markets, conversion rates, and market cap history.
Technical Analysis: SMA, EMA, MACD, RSI, VWAP, candlestick data, and aggregated latest indicators.
Price Lookup: USD prices by symbol(s) or token address/network.
News: Latest crypto news headlines.
AI-Optimized Tools (
agentFriendly): Enriched asset data, simplified indicators, and keyless x402 payment support.Account & Keys: Create free prepaid API keys, refill via x402 (USDC on Base), check balances and account info.
Integration: Dynamic endpoint discovery from the API spec; supports Claude Desktop and HTTP clients.
Provides access to Bitcoin asset data and technical analysis through the CoinCap API, including price, market cap, historical data, and indicators.
Provides access to Dash asset data and technical analysis through the CoinCap API, including price, market cap, historical data, and indicators.
Provides access to TON asset data and technical analysis through the CoinCap API, including price, market cap, historical data, and indicators.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CoinCap MCP Serverwhat's the current price of Bitcoin?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CoinCap MCP Server
A Model Context Protocol (MCP) server that exposes the CoinCap.io api as tools. This server can run in multiple modes to integrate with different MCP clients including Claude Desktop and MCP Inspector.
Features
Dynamic API Loading: Automatically loads all available CoinCap endpoints from their Swagger specification
Multiple Transport Modes: Works with stdio (Claude Desktop) or streamable HTTP (MCP Inspector)
Comprehensive Coverage: Access to assets, markets, exchanges, technical analysis, conversion rates & everything else in the api https://pro.coincap.io/api-docs/
Related MCP server: mcp-coincap-jj
Prerequisites
Node.js ≥ 18
Yarn package manager
Auth, either of:
A CoinCap API key (get one free at https://pro.coincap.io), or
An x402 wallet — an EVM private key holding USDC on Base — for keyless pay-per-call access to the
agentFriendlytools (see Keyless x402 payments)
Installation
Option 1: Using Claude Desktop Extension (.dxt) File
Download the latest built .dxt file here: https://github.com/CC3-0/coincap-mcp-server/raw/refs/heads/main/coincap-mcp-clean.dxt and open with claude desktop
Option 2: Using npx
# Run directly without installation
npx coincap-mcp-server
# For HTTP mode
npx coincap-mcp-server --port=3001Option 3: Clone and Build
# Clone the repository
git clone https://github.com/CC3-0/coincap-mcp-server
cd coincap-mcp-server
# Install dependencies
yarn install
# Build the project
yarn buildKeyless x402 payments
The 10 agentFriendly tools can be used without a CoinCap account: set
X402_PRIVATE_KEY to an EVM private key whose wallet holds USDC on Base, and
the server pays per call ($0.002–$0.01 USDC) via the
x402 protocol. Payment is signed off-chain
(EIP-3009) — the wallet needs no ETH for gas, only USDC.
{
"mcpServers": {
"crypto-prices": {
"command": "npx",
"args": ["coincap-mcp-server"],
"env": {
"X402_PRIVATE_KEY": "0x_your_wallet_private_key"
}
}
}
}Notes:
Use a dedicated, low-balance wallet. Fund it with a few dollars of USDC on Base — never reuse a wallet holding significant funds.
Per-call spend is capped at 100000 atomic USDC ($0.10) regardless of what a server asks for; override with
X402_MAX_PAYMENT_ATOMIC_USDC.If both
COINCAP_API_KEYandX402_PRIVATE_KEYare set, the API key is used (no payment is made).Non-
agentFriendlytools always require an API key.
Usage
Option 1: Claude Desktop Extension File
This is the easiest way to use the CoinCap MCP Server. Requires the Claude Desktop app.
Download the latest built Desktop Extension file here: https://github.com/CC3-0/coincap-mcp-server/raw/refs/heads/main/coincap-mcp-clean.dxt
Locate the ‘coincap-mcp-clean.dxt file on your computer and right-click on the file.
Select: Open With > Claude
In the Preview popup within Claude Desktop, click the 'install' button
This will open a Configuration popup. In the 'CoinCap API Key' field, paste in your CoinCap API key. (If you do not already have a CoinCap API key, you can get one by creating a free CoinCap Pro account here: https://pro.coincap.io/dashboard)
You do not need to change anything in the 'Node.js Executable Path' field.
Click 'Save' at the bottom of the configuration popup
On the Extension preview popup, enable the MCP server by switching the toggle from 'disabled' to 'enabled'.
Close the preview popup and start a new chat.
Click the 'Search and tools' button in the chat text box to verify that the CoinCap MCP is installed and enabled properly.
You're ready to access CoinCap's crypto market data through Claude Desktop!
For more information on Claude Desktop Extenions see https://www.anthropic.com/engineering/desktop-extensions
Option 2: Claude Desktop Integration (Stdio Mode)
This is the standard mode for integrating with Claude Desktop via stdio transport.
Setup Steps:
Build the project:
yarn buildConfigure Claude Desktop to use the built server
Set your CoinCap API key in the environment
Claude Desktop Configuration:
Using npx (Recommended):
{
"mcpServers": {
"crypto-prices": {
"command": "npx",
"args": ["coincap-mcp-server"],
"env": {
"COINCAP_API_KEY": "your_coincap_api_key_here"
}
}
}
}Using local build:
{
"mcpServers": {
"crypto-prices": {
"command": "node",
"args": ["/path/to/your/coincap-mcp-server/dist/index.js"],
"env": {
"COINCAP_API_KEY": "your_coincap_api_key_here"
}
}
}
}Option 3: Remote Streamable HTTP
Run the server as an HTTP service for use with MCP Inspector or other HTTP-based MCP clients.
Starting the HTTP Server:
# Set your API key
export COINCAP_API_KEY="your_coincap_api_key_here"
# Start the HTTP server
yarn startRemoteThis starts an HTTP server on http://127.0.0.1:3001/mcp
Using with MCP Inspector :
The MCP Inspector (https://github.com/modelcontextprotocol/inspector) allows you to Browse available tools & make calls.
# Start mcp inspector
npx @modelcontextprotocol/inspector
Visit the local mcp inspector in the browser, set mode to streamable HTTP mode, and url to http://127.0.0.1:3001/mcp
Curl examples:
List Available Tools:
curl -X POST http://127.0.0.1:3001/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
}'Example Tool Call: Get Bitcoin Asset Details
curl -X POST http://127.0.0.1:3001/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "assets_slug",
"arguments": {
"slug": "bitcoin",
"apiKey": "your_coincap_api_key_here"
}
}
}'Available Tools
The server dynamically loads tools from the CoinCap API specification, providing access to comprehensive cryptocurrency data and technical analysis. The exact tools available are loaded at runtime from the API's Swagger specification.
Tool Categories Include:
Asset Tools - Cryptocurrency listings, details, historical data, and markets
Technical Analysis Tools - RSI, SMA, EMA, MACD, VWAP, and candlestick data
Market & Exchange Tools - Exchange listings, market data, and conversion rates
To see all available tools and their parameters, use the "List Available Tools" command above or connect via MCP Inspector.
Development
# Install dependencies
yarn install
# Build the project
yarn build
# Start in stdio mode (default)
yarn start
# Start in HTTP mode on port 3001
yarn startRemote
# Development with auto-rebuild
yarn devAPI Key Issues
Ensure your
COINCAP_API_KEYis properly set as an environment variable when used locally and passed in every tool call.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceA 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.322439MIT
- AlicenseAqualityBmaintenanceA 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. Updated to use Coin Cap API v33261MIT

CoinStats MCP Serverofficial
AlicenseBqualityBmaintenanceMCP Server for the CoinStats API. Provides access to cryptocurrency market data, portfolio tracking, and news.305116MIT- FlicenseAqualityDmaintenanceProvides access to cryptocurrency market data through the CoinCap API v3, enabling users to retrieve real-time prices, exchange rates, market information, and detailed data for various cryptocurrencies.5
Related MCP Connectors
CoinGecko MCP — wraps CoinGecko free API (no auth required)
Crypto intelligence MCP for market data, DeFi, wallets, security, DEX, NFTs, and Solana.
CoinMarketCap MCP — crypto prices, market cap, rankings
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CC3-0/coincap-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server