Crypto Prices MCP Server
Pricing
Pay per usage
Crypto Prices MCP Server
Get real-time cryptocurrency prices, trending coins, and search via MCP. Powered by CoinGecko. No API key needed.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Nyxar Dev
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
3 days ago
Last modified
Categories
Share
An Apify Actor that provides a Model Context Protocol (MCP) server for querying real-time cryptocurrency data. Look up prices, find trending coins, and search across thousands of tokens -- all powered by CoinGecko's free API with no keys required.
What does it do?
This MCP server gives any MCP client instant access to live crypto market data. It wraps CoinGecko's public API, so there's nothing to configure and no credentials to manage.
With this server you can:
- Get the current price, market cap, and 24-hour change for any coin
- See which coins are trending right now on CoinGecko
- Search for coins by name or symbol to find the right coin ID
Why use it?
- Zero configuration -- no API keys or authentication needed
- Works with any MCP client -- any MCP-compatible tool or IDE integration
- Pay-per-use pricing -- only $0.03 per tool call, no subscription
- Real-time data -- prices and trends are fetched live from CoinGecko
- Hosted on Apify -- no infrastructure to manage
How to use
MCP client setup
Add the following to your MCP client configuration file:
{"mcpServers": {"crypto-prices-mcp": {"type": "url","url": "https://nyxar_dev--crypto-prices-mcp.apify.actor/mcp"}}}
Other MCP clients
Point any MCP-compatible client at the endpoint:
https://nyxar_dev--crypto-prices-mcp.apify.actor/mcp
The server accepts HTTP POST requests with JSON-RPC payloads as defined by the MCP specification.
Tools
get_price
Get the current price of a cryptocurrency, including market cap and 24-hour change.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| coin_id | string | yes | -- | CoinGecko coin ID (e.g. bitcoin, ethereum, solana) |
| currency | string | no | usd | Target currency (e.g. usd, eur, gbp) |
get_trending
Get the top 7 trending coins on CoinGecko right now. No parameters required.
search_coins
Search for a cryptocurrency by name or symbol.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| query | string | yes | -- | Search query (e.g. bitcoin, eth, doge) |
Output examples
get_price
{"coin": "bitcoin","price": 67432.00,"market_cap": 1327000000000,"change_24h": 2.34}
get_trending
[{"name": "Pepe","symbol": "PEPE","market_cap_rank": 24,"price_btc": 1.2e-10}]
search_coins
[{"id": "bitcoin","name": "Bitcoin","symbol": "BTC","market_cap_rank": 1},{"id": "bitcoin-cash","name": "Bitcoin Cash","symbol": "BCH","market_cap_rank": 18}]
Pricing
This Actor uses a pay-per-event pricing model. Each tool call costs $0.03 USD.
License
ISC