Crypto.com
by Crypto.com
Read live cryptocurrency exchange market data from an AI assistant: prices, order books, trades, candlesticks and instrument specifications. 9 tools, all read-only, no account or API key required.
Verified connector
Listed by Anthropic as a partner connector in its Connectors Directory.
Connection checked by Agentman on .
Anthropic states this reflects the level of review a connector received, not a security audit.
Connect Crypto.com via MCP
https://mcp.crypto.com/market-data/mcpWorks in any MCP-compatible client. In Agentman Studio it is one click — no config file to edit.
Crypto.com Tools & Capabilities (9)
Recent candlesticks for an instrument and timeframe (returns up to 50)
Index price for an instrument
Single ticker for an instrument
Mark price for an instrument
Recent trades (default 10, max 150)
List all available trading instruments
Instrument detail for an instrument by id
Tickers for an instrument or all
Order book snapshot (bids/asks)
Read from the server on 2026-08-17, including each tool's own safety annotations.
Limits
- This is market data, not advice. Crypto.com's documentation carries an explicit "Not Financial Advice" notice stating the server provides market information only and does not provide investment advice, trading signals or recommendations, and directs readers to do their own research and consult a financial advisor. Its examples page adds that the server cannot predict future prices. We reflect that unsoftened: this page describes what the tools return and nothing more.
- The server's own
initializeresponse advertises four tools that do not exist. Theinstructionsstring returned on 2026-08-17 namesget_widget,get_market_orderbook,get_market_tradesandget_market_candles, and describes embeddable widgets. Atools/listagainst the same session in the same minute returned nine tools, none of them by those names. The tool list is authoritative; the instructions string is stale. It matters because a model readsinstructionsas guidance, so an agent may attempt a call that cannot succeed. - The directory listing capitalises four tool names that are lowercase on the server. Anthropic's snapshot records
Get_candlestick,Get_tickers,Get_tickerandGet_book. The live server returnsget_candlestick,get_tickers,get_tickerandget_book. MCP tool names are case-sensitive, so code written from the directory listing would fail. The other five names match exactly. - Everything is instrument-scoped, and the instrument names are exchange symbols. Seven of the nine tools require an
instrument_name, and Crypto.com's exchange documentation gives the form as symbols likeBTCUSD-PERP. An agent that passes a plain coin name will not get an answer; callget_instrumentsfirst to resolve one. - Coverage is one exchange, not the whole market. Crypto.com's features page states the data comes from Crypto.com's own exchange market data. Prices, volumes and books reflect that venue. The index price is the only figure documented as drawing on prices across multiple venues.
- History is shallow.
get_candlestickreturns at most 50 bars,get_tradesat most 150 with a documented seven-day window, and no tool returns a long-range historical series. This connector is built for the current state of the market rather than for backtesting or trend research. - Rate limits exist but are not published as a number. Crypto.com's FAQ says there are no strict limits for normal use, that very high-frequency requests may be rate-limited, and that normal conversational use is never limited. Its exchange documentation adds that public endpoints share a global rate-limit pool and recommends caching the instrument catalogue rather than polling. Its Claude guide documents a "Rate limit exceeded" error with a five-to-ten-minute wait as the remedy. No numeric ceiling is published for the MCP server, so an agent polling in a loop should back off on its own rather than rely on one.
- The tools return strings, not numbers. Every price, quantity and volume field in the output schemas is typed as a string, and many ticker fields are nullable. Code consuming these responses needs to parse and null-check rather than assume numeric types.
- The privacy policy in Anthropic's directory listing could not be read. The published URL
https://crypto.com/privacy/enentered an infinite redirect loop on 2026-08-17 (/privacy/en→/us/privacy→/privacy/privacy_us.pdf→ back), exhausting the redirect limit with zero bytes returned. This page therefore makes no claim about Crypto.com's privacy terms. Crypto.com's MCP FAQ separately states the server collects no personal information, does not access conversations and requires no authentication, but that is the docs page speaking, not the policy. - We did not exercise any MCP tool. Our check was an anonymous
initialize, anotifications/initializedand atools/listagainst the endpoint. Behavioural claims above come from the tool schemas, from Crypto.com's documentation, or from Crypto.com's exchange API reference, each attributed in Sources.
Frequently asked questions
Do I need a Crypto.com account or an API key to use this connector?
No. Crypto.com's documentation states the Market Data MCP server is completely free and requires no account, no API key and no payment information. Our anonymous handshake against the endpoint on 2026-08-17 confirmed it: the server completed the MCP initialize exchange and returned all nine tool definitions with no credential presented and no authentication challenge returned.
Can the Crypto.com MCP server place a trade or touch my exchange balance?
No. All nine tools on this server are annotated readOnlyHint true and destructiveHint false, and no tool name, description or input schema references placing, cancelling or amending an order, or reading an account balance. Crypto.com's own documentation states the server cannot execute trades or access your personal accounts. It is a market-data feed only.
Why is every Crypto.com tool marked idempotentHint false if they only read data?
Because a repeated call genuinely returns a different answer. Idempotency describes whether a repeat call produces the same result, not whether it writes anything. Calling get_ticker twice a minute apart returns two different prices because the market moved between them. The flag correctly signals live data rather than instability, and no repeat call causes a side effect.
What is the difference between mark price and index price on this connector?
They are two separate reference prices for derivatives, and this server exposes one tool for each. get_index_price returns the index value, derived from prices across multiple venues for the underlying asset. get_mark_price returns the mark price, which the exchange uses to value open positions. Crypto.com's exchange documentation publishes mark price updates at roughly 50-millisecond intervals.
How much history can I get from get_candlestick and get_trades?
Not much, by design. get_candlestick's own description caps the response at 50 bars, and get_trades defaults to 10 with a maximum of 150. Crypto.com's exchange documentation adds a seven-day maximum window on recent trades. These are recent-activity endpoints, so this connector answers what is happening now rather than supporting long-range historical analysis.
What does get_book return, and what is an order book?
An order book is the live list of unfilled buy and sell orders for one instrument. get_book returns a snapshot of it: an array of bids in descending price order and asks ascending, each level carrying a price and a quantity, plus a UTC timestamp. Crypto.com's exchange documentation caps depth at 50 levels per side.
Does the Crypto.com connector give investment advice or price predictions?
No, and Crypto.com says so explicitly. Its documentation carries a Not Financial Advice notice stating the server provides market information only, and does not provide investment advice, trading signals or recommendations. Its features page separately lists predicting future prices among what the server does not do. Every tool returns measurements; interpretation is left entirely to you.
Sources
- Crypto.com Market Data MCP documentation (retrieved 2026-08-17, HTTP 200, zero redirects; the URL Anthropic's directory publishes). Six further pages were fetched from its own hrefs and sidebar:
/docs/getting-started,/docs/claude,/docs/examples,/docs/features,/docs/faqand/docs/troubleshooting, all HTTP 200 on the same date. Sources for: the free/no-account/no-API-key statements, the Claude web, Desktop and Code setup steps and config block, the "Not Financial Advice" notice, the list of what the server cannot do, the rate-limit language, the data-source statement, and the verification and troubleshooting steps · retrieved 2026-08-17 - Live MCP handshake against
https://mcp.crypto.com/market-data/mcp— anonymousinitialize(HTTP 200, no authentication challenge,serverInfo"Crypto.com Exchange MCP" 0.1.0, protocol 2025-03-26) followed bynotifications/initialized(HTTP 202) andtools/list(HTTP 200, 9 tools with descriptions, input and output schemas and safety annotations), 2026-08-17. The successful anonymous exchange is what setsauthVerified. No tool was called · retrieved 2025-03-26 - Crypto.com Exchange API v1 documentation (retrieved 2026-08-17, HTTP 200; the directory-era host
exchange-docs.crypto.com302s here and the destination is cited). Pages used:/docs/api/rest/reference-and-market-data(the public unauthenticated market-data description, the 50-level book cap, the seven-day trade window, the shared rate-limit pool and the catalogue-caching advice),/docs/api/rest/public-get-candlestick(the twelve accepted timeframe values),/docs/api/rest/public-get-book,/docs/api/rest/public-get-tickers,/docs/api/rest/public-get-instruments(instrument symbol form and contract-specification fields), and/docs/api/websocket/ws-channel-mark-instrument-nameand/ws-channel-index-instrument-name(mark price updating at roughly 50ms, and the index channel). These document the exchange endpoints the MCP tools mirror; per-tool behaviour above is attributed to the MCP schemas, not to these pages · retrieved 2026-08-17 robots.txtforcrypto.com(retrieved 2026-08-17, HTTP 200, genuine text).User-agent: *disallows only podcast, promo and CDN paths; the docs host is not restricted. NoContent-Signalline is present on any Crypto.com host we checked, which per the Cloudflare convention neither grants nor restricts AI use.mcp.crypto.comserves norobots.txt,llms.txtorsitemap.xml(all HTTP 404 with a JSON gateway message), and the docs pages carry<meta name="robots" content="index, follow">— the only machine-policy signal readable on that host · retrieved 2026-08-17- Anthropic Connectors Directory entry (from the 2026-08-16 directory snapshot; partner tier, financial-services category,
streamable-httptransport,is_authless: true, and nine tool names, four of which differ in capitalisation from the live server) · retrieved 2026-08-16 - Crypto.com support centre (the support URL Anthropic's directory publishes;
robots.txtHTTP 200 and permissive, 2026-08-17). Referenced as the vendor's support route only; no claim on this page is sourced from it · retrieved 2026-08-17 - Crypto.com privacy policy (the URL Anthropic's directory publishes). Not retrieved: on 2026-08-17 it entered an infinite redirect loop via
https://crypto.com/us/privacyandhttps://crypto.com/privacy/privacy_us.pdf, returning zero bytes after the redirect limit was exhausted. Nothing is cited from it · retrieved 2026-08-17
Use in Agentman
Connect once and your agents call these tools on their own — on a schedule, in a workflow, with nobody at the keyboard.
Open in Agentman StudioServer Info
- Category
- Finance
- Developer
- Crypto.com
- Tools
- 9
- Domain
- mcp.crypto.com
Using Claude Desktop or another MCP client? Setup docs — the connection URL above works anywhere.