Crypto Price MCP Server
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., "@Crypto Price 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.
MCP Server
A Model Context Protocol server that provides crypto price fetching capabilities. This server enables LLMs to retrieve and process the latest price for any coin by its name or symbol. This server was created for demo and practice purposes only and has limited capabilities.
Rate Limits: This server utilizes CoinGecko's free Demo API plan which has a rate limit of approximately 30 calls per minute.
Available Tools
get_crypto_price_by_name- Fetches the current price for a coin by coin name.coin_name(string, required): The name of the coin (e.g. Bitcoin)
get_crypto_price_by_symbol- Fetches the current price for a coin by coin symbol.coin_symbol(string, required): The symbol of the coin (e.g. BTC)
Related MCP server: Coin MCP Server
Setup
Prerequisites
Python 3.8+
uv package manager
Installation
Clone the repository:
git clone <your-repo-url>
cd <your-repo-name>Install dependencies with uv:
uv syncTesting with MCP Inspector
The MCP Inspector allows you to test your server locally before integrating with Claude.
Install the MCP Inspector:
npm install -g @modelcontextprotocol/inspectorRun your server with the inspector:
npx @modelcontextprotocol/inspector uv run server.pyOpen the web interface that appears (usually
http://localhost:5173)Test the tools:
Try
get_crypto_price_by_namewithcoin_name: "Bitcoin"Try
get_crypto_price_by_symbolwithcoin_symbol: "BTC"
Claude Desktop Integration
1. Find Your Config File
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.json
2. Add Server Configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"crypto-price-server": {
"command": "uv",
"args": ["run", "/absolute/path/to/your/server.py"],
"cwd": "/absolute/path/to/your/project/directory"
}
}
}Replace the paths with your actual project paths.
3. Restart Claude Desktop
Close and reopen Claude Desktop completely.
4. Test in Claude
Ask Claude something like:
"What's the current price of Bitcoin?"
"Can you get the price of ETH using the crypto tools?"
"Use the crypto price tool to check the price of Solana"
Troubleshooting
Server won't start:
Make sure you're in the project directory
Try
uv run server.pydirectly to see error messages
Claude can't find the server:
Double-check the absolute paths in your config
Make sure there are no typos in the JSON
Restart Claude Desktop after making changes
Tools return errors:
Check your internet connection
You may have hit the CoinGecko rate limit (wait a minute and try again)
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
- AlicenseBqualityFmaintenanceA Model Context Protocol server that provides read-only access to Bybit's cryptocurrency exchange API, allowing users to query real-time cryptocurrency data using natural language.Last updated121416MIT
- Flicense-qualityFmaintenanceA Model Context Protocol server that provides access to CoinMarketCap's cryptocurrency data, enabling AI applications to retrieve cryptocurrency listings, quotes, and detailed information.Last updated37
- 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 v3Last updated3551MIT
- FlicenseBqualityDmaintenanceA Model Context Protocol server that connects Gemini CLI with CoinGecko's API, enabling users to access 46 cryptocurrency data tools including price tracking, market trends, and NFT information through terminal commands.Last updated505
Related MCP Connectors
Live and historical cryptocurrency prices via CoinGecko free API.
CoinGecko MCP — wraps CoinGecko free API (no auth required)
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Appeared in Searches
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/whitmanca/mcp-crypto-price'
If you have feedback or need assistance with the MCP directory API, please join our Discord server