by truss44
Get real-time LiteCoin price data and market trends with Crypto Price (CoinCap). Analyze coin marketcap and track prices
Provides real-time cryptocurrency price data and market analysis using CoinCap's API. Get current prices, historical trends, and detailed market insights for any cryptocurrency.
Crypto Price (CoinCap) is a community-built MCP server published by truss44 that provides AI assistants with tools and capabilities via the Model Context Protocol. Get real-time LiteCoin price data and market trends with Crypto Price (CoinCap). Analyze coin marketcap and track prices It is categorized under finance, analytics data. This server exposes 3 tools that AI clients can invoke during conversations and coding sessions.
You can install Crypto Price (CoinCap) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport. This server supports remote connections over HTTP, so no local installation is required.
MIT
Crypto Price (CoinCap) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Crypto Price (CoinCap) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Crypto Price (CoinCap) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated Crypto Price (CoinCap) against two servers with overlapping tools; this profile had the clearer scope statement.
Crypto Price (CoinCap) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated Crypto Price (CoinCap) against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated Crypto Price (CoinCap) against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: Crypto Price (CoinCap) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Strong directory entry: Crypto Price (CoinCap) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Crypto Price (CoinCap) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Crypto Price (CoinCap) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 51
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.
Add this configuration to your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%/Claude/claude_desktop_config.json{
"mcpServers": {
"mcp-crypto-price": {
"command": "npx",
"args": ["-y", "mcp-crypto-price"]
}
}
}
If your MCP client requires launching via cmd.exe on Windows:
{
"mcpServers": {
"mcp-crypto-price": {
"command": "cmd",
"args": ["/c", "npx", "-y", "mcp-crypto-price"]
}
}
}
You can run the server over HTTP for environments that support MCP over HTTP streaming.
npm run dev
# Build the HTTP bundle (outputs to .smithery/)
npm run build
# Start the HTTP server
npm run start:http
# Build the STDIO bundle (outputs to dist/)
npm run build:stdio
# Start the STDIO server
npm run start:stdio
The dev/build commands will print the server address to the console. Use that URL in clients that support MCP over HTTP (for example, Smithery). You can optionally provide an API key via COINCAP_API_KEY for higher rate limits.
For higher rate limits, add an API key to your configuration:
{
"mcpServers": {
"mcp-crypto-price": {
"command": "npx",
"args": ["-y", "mcp-crypto-price"],
"env": {
"COINCAP_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
This MCP server works directly via npx (configs above) and does not require Smithery.
If you do use the Smithery CLI, authenticate with smithery auth login or by setting SMITHERY_API_KEY in your environment. Recent versions of the Smithery CLI do not support passing API keys via --key (or older --profile patterns).
Important Note: CoinCap is sunsetting their v2 API. This MCP supports both v2 and v3 APIs:
- If you provide a
COINCAP_API_KEY, it will attempt to use the v3 API first, falling back to v2 if necessary- Without an API key, it will use the v2 API (which will eventually be discontinued)
- It's recommended to obtain an API key from pro.coincap.io/dashboard as the v2 API will be completely deactivated in the future
Launch Claude Desktop to start using the crypto analysis tools.
This repository requires Verified (cryptographically signed) commits. CI also includes a job (Verify commit signatures) that fails PRs with unsigned commits.
# Generate a new ed25519 SSH key (no passphrase makes CI easier)
ssh-keygen -t ed25519 -C "CI signing key for mcp-crypto-price" -f ~/.ssh/id_ed25519 -N ''
# Your keys will be at:
# Private: ~/.ssh/id_ed25519
# Public : ~/.ssh/id_ed25519.pub
git config --global gpg.format ssh
git config --global user.signingkey ~/.ssh/id_ed25519.pub
git config --global commit.gpgsign true
# Example signed commit
git commit -S -m 'feat: add something'
~/.ssh/id_ed25519.pubGets current price and 24h stats for any cryptocurrency, including:
Provides detailed market analysis including:
Analyzes historical price data with:
This project was inspired by Alex Andru's coincap-mcp project.
This project is licensed under the MIT License
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.