Live market prices and candles for AI agents (200+ coins). Data only, no trading advice.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Give your AI agent live market prices. An MCP server that lets an agent look up the current price, the full symbol list, and recent price history for 200+ coins.
An LLM's knowledge is frozen at training time, so it can't answer "what's BTC trading at right now?". This closes that gap. It returns market data only. It never gives a trading signal or predicts direction.
You: What's Bitcoin trading at, and how has it moved over the last few hours?
Agent (calls
get_price("BTC")andget_candles("BTC", "1h", 6)): Bitcoin is at $65,047. Over the last 6 hours it's held between $65,020 and $65,132 on rising volume.
The agent fetches real numbers instead of guessing from stale training data.
Add it to your MCP client (e.g. Claude Desktop's config):
Restart your client. The agent now has four tools.
| Tool | Returns |
|---|---|
get_price("BTC") | {"symbol": "BTC", "price": 65047.5, "as_of": 1786204330859} |
get_prices(["BTC","ETH"]) | current price for each, missing ones flagged |
list_symbols() | every symbol it can price (200+) |
get_candles("BTC","1h",100) | recent OHLCV history (1m β¦ 1d) |
Example candle:
Prices come from the public Hyperliquid info API. The core fetching module
(price_data_mcp/prices.py) uses the Python standard library only (no dependencies), so it's
small and easy to audit. The mcp extra is only needed to run the server.
A market-data source for agents. It reports prices and history. It does not give trading signals, predict where the price is going, or place orders.
MIT
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/price-data-mcp)<a href="https://allmcps.com/mcp/price-data-mcp"><img src="https://allmcps.com/api/badge/price-data-mcp?style=directory" alt="Price Data MCP on AllMCPs" /></a>