CoinGecko
Real-time and historical cryptocurrency market data such as price, market cap, volume, and more for over 38 million tokens across 1500 exchanges. Free to access and no key required.
https://api-coingecko.run.tools
How to connect
-
Smithery (hosted)
1. Open https://smithery.ai/servers/coingecko/api 2. Click Connect and complete OAuth in your MCP client (Claude, Cursor, VS Code, etc.) 3. MCP endpoint: https://api-coingecko.run.tools
Tools (2)
-
executeRuns JavaScript code to interact with the Coingecko API. You are a skilled TypeScript programmer writing code to interface with the service. Define an async function named "run" that takes a single parameter of an initialized SDK client and it will be run. For example: ``` async function run(client) { const price = await client.simple.price.get({ vs_currencies: 'usd', ids: 'bitcoin' }); } ``` You will be returned anything that your function returns, plus the results of any console.log state
-
search_docsSearch SDK documentation to find methods, parameters, and usage examples for interacting with the API. Use this before writing code when you need to discover the right approach.