Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

CoinMarketCap MCP connector

OAuth 2.1/DCR AnalyticsAIFinance

Connect to CoinMarketCap MCP. Access real-time crypto quotes, market metrics, technical analysis, trending narratives, and news from your AI workflows.

CoinMarketCap MCP connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. quickstart.ts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENV_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'coinmarketcapmcp'
    const identifier = 'user_123'
    // Generate an authorization link for the user
    const { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })
    console.log('Authorize CoinMarketCap MCP:', link)
    process.stdout.write('Press Enter after authorizing...')
    await new Promise(r => process.stdin.once('data', r))
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'coinmarketcapmcp_get_crypto_marketcap_technical_analysis',
    toolInput: {},
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Narratives trending crypto — Get a ranked list of the top trending cryptocurrency narratives, including market cap, trading volume, performance across timeframes, and the top associated tokens
  • Search cryptos, crypto info — Search cryptocurrencies by name, symbol, or slug using fuzzy matching
  • Get upcoming macro events, global metrics latest, global crypto derivatives metrics — Get a list of upcoming macroeconomic events that could impact the crypto market, useful for anticipating price catalysts

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

coinmarketcapmcp_get_crypto_info # Get static metadata for one or more cryptocurrencies, including logo, description, website, social links, and technical documentation URLs. 1 param

Get static metadata for one or more cryptocurrencies, including logo, description, website, social links, and technical documentation URLs.

Name Type Required Description
id string required One or more comma-separated CoinMarketCap cryptocurrency IDs.
coinmarketcapmcp_get_crypto_latest_news # Get the latest news articles for a cryptocurrency. Returns up to 20 items with title, description, content, URL, and publication date. 2 params

Get the latest news articles for a cryptocurrency. Returns up to 20 items with title, description, content, URL, and publication date.

Name Type Required Description
id string required CoinMarketCap cryptocurrency ID (e.g. Bitcoin is 1).
limit integer optional Number of news articles to return. Default is 10, max is 20.
coinmarketcapmcp_get_crypto_marketcap_technical_analysis # Get technical analysis indicators (SMA, EMA, MACD, RSI, Fibonacci levels, pivot points) for the total cryptocurrency market cap. 0 params

Get technical analysis indicators (SMA, EMA, MACD, RSI, Fibonacci levels, pivot points) for the total cryptocurrency market cap.

coinmarketcapmcp_get_crypto_metrics # Get on-chain metrics for a cryptocurrency, including address distribution by holding value and time, circulating supply distribution, and 30-day average transaction fee. 1 param

Get on-chain metrics for a cryptocurrency, including address distribution by holding value and time, circulating supply distribution, and 30-day average transaction fee.

Name Type Required Description
id string required CoinMarketCap cryptocurrency ID (e.g. Bitcoin is 1).
coinmarketcapmcp_get_crypto_quotes_latest # Get the latest market quote for one or more cryptocurrencies, including price, percent changes across multiple timeframes, market cap, and 24h volume. 1 param

Get the latest market quote for one or more cryptocurrencies, including price, percent changes across multiple timeframes, market cap, and 24h volume.

Name Type Required Description
id string required One or more comma-separated CoinMarketCap cryptocurrency IDs.
coinmarketcapmcp_get_crypto_technical_analysis # Get comprehensive technical analysis for a cryptocurrency, including moving averages (SMA, EMA), MACD, RSI, Fibonacci levels, and pivot points. 2 params

Get comprehensive technical analysis for a cryptocurrency, including moving averages (SMA, EMA), MACD, RSI, Fibonacci levels, and pivot points.

Name Type Required Description
id string required CoinMarketCap cryptocurrency ID (e.g. Bitcoin is 1).
includeFields array optional List of field names to include in the response. If omitted, all fields are returned.
coinmarketcapmcp_get_global_crypto_derivatives_metrics # Get global crypto derivatives data including open interest, funding rates, and BTC liquidation figures to assess leverage and squeeze risk. 0 params

Get global crypto derivatives data including open interest, funding rates, and BTC liquidation figures to assess leverage and squeeze risk.

coinmarketcapmcp_get_global_metrics_latest # Get the latest global cryptocurrency market snapshot, including total market cap, 24h volume, fear-and-greed score, altcoin season gauge, BTC/ETH dominance, leverage stats, and ETF flows. 0 params

Get the latest global cryptocurrency market snapshot, including total market cap, 24h volume, fear-and-greed score, altcoin season gauge, BTC/ETH dominance, leverage stats, and ETF flows.

coinmarketcapmcp_get_upcoming_macro_events # Get a list of upcoming macroeconomic events that could impact the crypto market, useful for anticipating price catalysts. 0 params

Get a list of upcoming macroeconomic events that could impact the crypto market, useful for anticipating price catalysts.

coinmarketcapmcp_search_crypto_info # Semantic search for cryptocurrency concepts including descriptions, definitions, FAQs, GitHub links, whitepapers, and websites. The prompt must be in English. 2 params

Semantic search for cryptocurrency concepts including descriptions, definitions, FAQs, GitHub links, whitepapers, and websites. The prompt must be in English.

Name Type Required Description
id string required CoinMarketCap cryptocurrency ID to scope the search to a specific coin.
prompt string required Search query about the cryptocurrency in English.
coinmarketcapmcp_search_cryptos # Search cryptocurrencies by name, symbol, or slug using fuzzy matching. Returns a ranked list with ID, name, symbol, slug, and rank. 2 params

Search cryptocurrencies by name, symbol, or slug using fuzzy matching. Returns a ranked list with ID, name, symbol, slug, and rank.

Name Type Required Description
query string required Cryptocurrency name, symbol, or slug to search for.
limit integer optional Maximum number of results to return. Default is 3, max is 5.