coin-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| COINGECKO_API_KEY | No | When set, the server uses the Pro endpoint and authenticates requests. Pro keys (prefixed `CG-`) send `x-cg-pro-api-key`; otherwise Demo (`x-cg-demo-api-key`). |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| cache_statsA | Return current HTTP-cache statistics. Reach for this when:
Returns: Dict with keys: entries: number of live cached entries max_entries: LRU eviction threshold hits, misses, sets, errors: cumulative counters since process start hit_rate: hits / (hits + misses), 0.0 if no requests yet by_pattern: per-endpoint-pattern breakdown of the same counters |
| clear_cacheA | Drop every entry from the HTTP cache. Reach for this when:
Prefer letting TTLs expire naturally; this tool resets ALL endpoints, not just one. Counters (hits/misses/...) are preserved. Returns: {"cleared": } |
| get_priceA | Get the current spot price of one or more cryptocurrencies. Use this for the cheapest, fastest "what is X worth right now?" lookup.
For historical prices, use Args:
coin_ids: Comma-separated CoinGecko coin IDs, e.g. "bitcoin,ethereum,solana".
IDs are NOT ticker symbols — call Returns: Mapping of {coin_id: {currency: price, ...}}. When the optional flags are enabled, additional fields like "_market_cap", "_24h_vol", "_24h_change", and "last_updated_at" appear alongside the price. |
| get_coin_detailsA | Get rich metadata for a single coin: description, links, scores, market data, dev/community stats. Use this when the user wants to learn about a coin (what is it, who built it, links to docs/source/socials), or when you need scores like CoinGecko rank, sentiment up/down vote percentages, or developer activity. For just the price, use Args:
coin_id: CoinGecko coin ID, e.g. "bitcoin".
localization: Include localized names/descriptions for many languages.
Usually false to keep responses small.
tickers: Include a tickers array (large). Use Returns:
A coin object with fields like Note: |
| get_market_chartA | Get historical price, market cap and total volume time series for a coin. Use this to draw line charts or compute returns/volatility over a window.
For candlestick (OHLC) data use Granularity is auto-selected by CoinGecko based on
Args: coin_id: CoinGecko coin ID (e.g. "bitcoin"). vs_currency: Quote currency (e.g. "usd", "eur", "btc"). days: Window in days. Examples: "1", "7", "14", "30", "90", "180", "365", or "max" for the full history. interval: Force daily granularity by passing "daily". Leave empty for auto. Returns: Object with three arrays of [unix_ms, value] pairs: - prices - market_caps - total_volumes Note: |
| get_aggregated_ohlcA | Get aggregated OHLC (open/high/low/close) candlestick data across all exchanges. Use for technical-analysis-style candlestick views of "the market" rather
than a single venue. For per-exchange high-granularity candles (1m, 5m, etc.),
use Candle width auto-selected by CoinGecko based on
Args: coin_id: CoinGecko coin ID. vs_currency: Quote currency (e.g. "usd"). days: Window in days. One of "1","7","14","30","90","180","365","max". Returns: Array of [unix_ms, open, high, low, close] tuples. Note: |
| get_coin_tickersA | List exchange tickers (trading pairs) for a single coin across many venues. Use to answer "where can I buy/sell X?" or "which exchanges have the best liquidity for X?" Each ticker includes price, volume, bid-ask spread, converted last/volume in BTC/ETH/USD, and CoinGecko's trust score. Args:
coin_id: CoinGecko coin ID.
exchange_ids: Optional comma-separated exchange IDs to filter by
(CoinGecko exchange IDs, see Returns:
Object with Note: |
| searchA | Universal CoinGecko search — resolves names/symbols to IDs across coins, exchanges, categories and NFTs. ALWAYS use this first when the user mentions a coin/exchange/NFT by name or ticker symbol and you don't already know the canonical CoinGecko ID. Most other tools require IDs. Args: query: Free-text query, e.g. "btc", "uniswap", "bored ape". Returns: Object with arrays: - coins: [{ id, name, symbol, market_cap_rank, ... }] - exchanges: [{ id, name, market_type }] - categories: [{ id, name }] - nfts: [{ id, name, symbol }] |
| list_top_coinsA | List top coins with market data (price, market cap, volume, change %) — sortable and paginated. The workhorse for "show me the top N coins" / "top by volume" / "top in DeFi" style questions. Each call returns up to 250 coins; paginate for more. Args:
vs_currency: Quote currency (e.g. "usd").
order: Sort order. Default is descending market cap.
per_page: 1..250 coins per page.
page: Page number, 1-indexed.
category: Optional category ID to filter by (see Returns: Array of coin objects with id, symbol, name, image, current_price, market_cap, market_cap_rank, total_volume, high_24h, low_24h, price_change_*_in_currency, ath, atl, circulating_supply, etc. |
| get_trendingA | Get currently trending coins, NFT collections and categories on CoinGecko (last 24h searches). Use to answer "what is the market paying attention to right now?" or to surface narratives. This is search-driven, not volume-driven, so it captures emergent interest before price moves. Returns:
Object with arrays |
| get_top_gainers_losersA | Get the biggest price movers (gainers and losers) over a time window. NOTE: This endpoint typically requires a CoinGecko API key (Demo tier is
fine). Without a key it may return an error — fall back to Args: vs_currency: Quote currency. duration: Time window for price change. top_coins: Universe to scan — "300", "500", "1000", or "all". Returns:
Object with |
| get_global_marketA | Get global cryptocurrency market stats: total market cap, total 24h volume, BTC/ETH dominance. Use for macro questions like "what's the total crypto market cap?", "is BTC dominance rising?", "how many coins exist?". Returns:
Object with |
| get_global_defiA | Get global DeFi market stats: total DeFi market cap, DeFi-to-Eth ratio, top DeFi coin by share. For protocol-level TVL or chain-level breakdowns, use Returns:
Object with |
| list_categoriesA | List all coin categories with aggregated market data (market cap, 24h volume, 24h change). Use to discover narratives ("Layer 1", "DeFi", "Meme", "AI", "RWA",
"Liquid Staking", ...) and to find category IDs you can pass to
Args: order: Sort order. Returns:
Array of categories with |
| list_exchanges_directoryA | List centralized exchanges from CoinGecko's directory, ranked by trust score / volume. This is CoinGecko's curated directory with metadata (year established,
country, trust scores, 24h BTC-equivalent volume). For exchanges you can
actually query in real time via this MCP, see Args: per_page: 1..250 exchanges per page. page: Page number. Returns:
Array of exchanges with |
| get_exchange_infoA | Get detailed info on a single exchange (CoinGecko directory): description, links, volume, top tickers. Args:
exchange_id: CoinGecko exchange ID (e.g. "binance", "gdax", "kraken").
See Returns: Exchange object with name, year_established, country, description, url, image, trust score, volume metrics, and a tickers array. Note: |
| list_derivatives_exchangesA | List derivatives (futures/perp/options) exchanges ranked by open interest or volume. Use to compare derivatives venues (Binance Futures, Bybit, OKX, dYdX, etc.) by size. Args: order: Sort order. per_page: 1..250 per page. page: Page number. Returns:
Array of derivatives exchanges with |
| list_nftsA | List NFT collections sortable by floor price, market cap, or 24h volume. Args: order: Sort order. per_page: 1..250. page: Page number. Returns:
Array of NFT collections with |
| get_nft_collectionA | Get detailed data for a single NFT collection: floor price, market cap, volume, holders, links. Args:
nft_id: CoinGecko NFT collection ID, e.g. "bored-ape-yacht-club",
"cryptopunks". Use Returns:
NFT collection object with Note: |
| get_companies_holdingsA | Get public companies' BTC or ETH treasury holdings. Useful for "which companies own BTC?" or "what's MicroStrategy's stack?" style questions, and for tracking institutional adoption. Args: coin_id: Either "bitcoin" or "ethereum" — those are the only assets CoinGecko tracks for public-treasury data. Returns:
Object with |
| list_supported_exchangesA | List all exchange IDs that this server can query in real time via CCXT. Use this when you need to know which Returns:
Object with |
| get_exchange_marketsA | List all trading pairs (markets) supported by a specific exchange. Use to discover what symbols an exchange trades (e.g. "does Kraken list SOL/USDC?"), or to enumerate available perpetual contracts. Args:
exchange_id: CCXT exchange ID (lowercase). See Returns:
Object with |
| get_exchange_tickerA | Get a real-time ticker (bid/ask/last/24h stats) for one symbol on one exchange. Use when the user asks about price on a specific venue ("BTC on Coinbase", "ETH on Binance") or wants tight bid-ask spread info. Args: exchange_id: CCXT exchange ID, e.g. "binance". symbol: CCXT unified symbol, e.g. "BTC/USDT", "ETH/USD", "BTC/USDT:USDT" for a linear perp on Binance. Returns:
Ticker object with |
| get_orderbookA | Get a Level-2 order-book snapshot (top bids and asks) from a specific exchange. Use to assess liquidity, spread, and short-term supply/demand on a venue. Note this is a snapshot, not a stream. Args: exchange_id: CCXT exchange ID. symbol: CCXT unified symbol, e.g. "BTC/USDT". limit: How many price levels per side (default 20). Some exchanges cap this; CCXT will return as many as the venue allows. Returns:
Object with |
| get_recent_tradesA | Get recent public trades (the tape) for a symbol on a specific exchange. Use to inspect order flow, identify large prints, or compute very short-term trade-driven metrics. Args: exchange_id: CCXT exchange ID. symbol: Unified symbol, e.g. "BTC/USDT". limit: Number of recent trades to return (max ~1000 depending on venue). Returns:
Array of trades with |
| get_exchange_ohlcvA | Get OHLCV candlestick data from a specific exchange (high-granularity, including 1-minute candles). Prefer this over
Args: exchange_id: CCXT exchange ID, e.g. "binance". symbol: Unified symbol, e.g. "BTC/USDT". timeframe: Candle width. Not every exchange supports every timeframe; common safe choices: "1m","5m","15m","1h","4h","1d". limit: Number of candles. Most exchanges cap at ~500-1500 per call. since_ms: Optional unix-millis lower bound. Most recent candles when null. Returns: Array of [timestamp_ms, open, high, low, close, volume] tuples, oldest first. |
| get_funding_rateA | Get the current funding rate for a perpetual-futures contract on a specific exchange. Funding rate is a periodic payment between longs and shorts that anchors perp prices to spot. Positive funding means longs pay shorts (crowd is long); negative funding means shorts pay longs. Args: exchange_id: CCXT exchange ID that supports perps, e.g. "binance", "okx", "bybit", "bitmex". symbol: Perp symbol with settle suffix, e.g. "BTC/USDT:USDT" for the Binance USDT-margined linear perp, "BTC/USD:BTC" for an inverse perp. Returns:
Funding info with |
| get_fear_greed_indexA | Get the Crypto Fear & Greed Index (0=extreme fear, 100=extreme greed). A widely-quoted contrarian sentiment indicator that combines volatility, momentum, social media, surveys, BTC dominance and trend volume into a single 0-100 score. Useful for "are people fearful or greedy right now?" questions. Args: limit: How many days of history to return (default 1 = today only, 0 = all history). Returns:
Object with |
| compute_indicatorsA | Compute technical indicators on OHLCV candles you have already fetched. USE THIS WHEN: you have OHLCV data (from THIS TOOL DOES NOT FETCH DATA. The caller must provide candles. If you
need candles first, call THIS TOOL RETURNS OBSERVATIONS, NOT TRADING ADVICE. The Input format:
ohlcv: list of rows. Either
6 columns: [timestamp_ms, open, high, low, close, volume] (CCXT)
5 columns: [timestamp_ms, open, high, low, close] (CoinGecko aggregated_ohlc — no volume)
Rows must be ordered oldest -> newest. With 5-column input, OBV is
unavailable (returned as null with a Args:
ohlcv: Candles, oldest first. 5 or 6 columns per row.
indicators: Which indicators to compute. Any subset of
["rsi", "macd", "bollinger", "ema", "sma", "atr", "adx",
"stochastic", "obv"]. Default omits adx/stochastic/obv to keep
output compact; pass them explicitly to opt in.
rsi_period: Lookback for Wilder's RSI. Default 14.
macd_fast / macd_slow / macd_signal: MACD EMA periods. Defaults 12/26/9.
bb_period / bb_stddev: Bollinger Bands lookback and stddev multiplier.
Defaults 20 and 2.0.
ema_periods: List of EMA lookbacks to compute. Default [12,26,50,200].
sma_periods: List of SMA lookbacks to compute. Default [20,50,200].
atr_period: Wilder ATR lookback. Default 14.
stoch_k_period / stoch_d_period: Stochastic %K and %D periods.
Defaults 14 and 3.
adx_period: Wilder ADX lookback. Default 14.
include_series: If True, return the full per-bar series for every
indicator (suitable for charting). If False (default), return
only the latest value per indicator — much smaller payload.
When True and the input has more than Bounds:
The input is rejected with an error if it has more than
Returns:
Dict with one key per requested indicator plus:
- |
| list_protocolsA | List DeFi protocols ranked by TVL (or 1d/7d change, or market cap). Use this for "what are the biggest DeFi protocols?", "which protocols had
the largest TVL inflows/outflows today?", or to find a protocol's slug
before calling Args:
limit: Number of protocols to return after sorting (1..500).
sort_by: Metric to rank by, descending. "tvl" = current TVL,
"change_1d"/"change_7d" = TVL change %, "mcap" = token market cap.
chain: Optional chain name filter (e.g. "Ethereum", "Solana", "Base",
"Arbitrum"). Matches against each protocol's Returns:
Array of protocol summaries with Note: |
| get_protocol_tvlA | Get a single protocol's metadata, current TVL, and recent TVL history. Use after Args:
slug: Protocol slug from Returns:
Protocol object with Note: |
| list_chains_tvlA | List blockchain networks ranked by current total DeFi TVL. Use for "which chains have the most DeFi activity?", "how does Solana's
TVL compare to Ethereum's?", or to discover chain names you can pass to
Args: limit: Number of chains to return after sorting by TVL desc (1..200). Returns:
Array of chain summaries with |
| get_chain_tvl_historyA | Get historical total DeFi TVL for one chain, or for all of DeFi combined. Use to chart "Ethereum TVL over the last year" or "how has total DeFi TVL
evolved?" Complements CoinGecko's Args:
chain: Chain name from Returns:
Array of Note: |
| list_stablecoinsA | List stablecoins ranked by current circulating market cap. Use for "what are the biggest stablecoins?", "is USDT or USDC bigger?",
"where is USDC issued (which chains)?", or to track peg health
( Args:
limit: Number of stablecoins to return (1..200).
include_chain_breakdown: If true, includes a Returns:
Array of stablecoin summaries with |
| list_yield_poolsA | List DeFi yield-bearing pools (lending, staking, LPs) filtered & ranked by APY or TVL. The DefiLlama yields endpoint returns ~20k pools, so this tool aggressively
filters and slices client-side. Use for "best stablecoin yields right now",
"highest APY on Aave", "Lido vs Rocket Pool TVL", etc. Pair with
Args:
min_tvl_usd: Minimum pool TVL in USD. Default 1M filters out tiny
pools. Set to 0 to disable.
project: Optional project filter, e.g. "aave-v3", "lido", "compound-v3".
Matches the Returns:
Array of pool summaries with Note: |
| list_dex_volumesA | List DEXes ranked by 24-hour trading volume. Use for "biggest DEXes by volume", "Uniswap vs PancakeSwap volume", or to
see momentum (each entry includes 1d/7d/30d change percentages). Pair with
CCXT's Args: limit: Number of DEXes to return (1..200). Returns:
Object with a |
| list_fees_revenueA | List protocols ranked by fees or revenue (daily or all-time). Useful for "which protocols make the most money?", "Tron vs Ethereum
fees", or "Aave's revenue this month". DefiLlama distinguishes fees
(gross paid by users) from revenue (kept by the protocol/token holders),
and offers daily and all-time aggregations — pick via Args:
limit: Number of protocols to return (1..200).
data_type: Which metric series to pull. "dailyFees" = fees on a daily
basis (typical for "what's hot today?"), "dailyRevenue" = revenue
on a daily basis, "totalFees"/"totalRevenue" = cumulative all-time.
Note: regardless of data_type, each protocol's per-window fields
are still named Returns:
Object with a |
| get_token_dex_priceA | Get DefiLlama oracle spot prices for tokens identified by Use when you have a token's contract address and want a price without
going through CoinGecko/DexScreener — DefiLlama aggregates DEX prices
across many sources. For human-friendly token discovery (search by
symbol/name), use Args:
coins: Comma-separated Returns:
Object with a Note: Each |
| dex_searchA | Search DEX pairs across all chains by token name, symbol, or address. Use this when the token is too new or small for CoinGecko ( Args: query: Free-text query — token name ("BasedPepe"), ticker ("PEPE"), or contract address. DexScreener returns up to 30 pairs per call. limit: Max pairs to return after sorting by USD liquidity desc (1..30). Returns:
Array of trimmed pair objects with fields:
chainId, dexId, pairAddress, url, baseToken{address,name,symbol},
quoteToken{...}, priceNative, priceUsd, liquidityUsd, volumeH24,
priceChangeH24, fdv, marketCap, pairCreatedAt.
On API failure returns |
| get_dex_token_pairsA | Get all DEX pairs trading a given token contract, across every chain. Use this when you have an EVM/Solana contract address and want to see every venue where it's traded — useful for "which DEX has the deepest liquidity for this token?" and for finding the canonical pair on a specific chain. Pairs are returned sorted by USD liquidity desc. Prefer this over Args: token_address: Token contract address. EVM addresses like "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" (USDC on Ethereum) and Solana mint addresses both work. limit: Max pairs to return (1..30 typical). chain: Optional chain filter — only return pairs on this chain. Common values: "ethereum", "bsc", "solana", "polygon", "arbitrum", "base", "optimism", "avalanche". Leave empty for all chains. Returns:
Array of trimmed pair objects (same shape as Note: |
| get_dex_pairA | Get full detail for a single DEX pair on a specific chain. Use after Args: chain_id: Chain identifier as DexScreener returns it. Typical values: "ethereum", "bsc", "solana", "polygon", "arbitrum", "base", "optimism", "avalanche", "pulsechain", "fantom", "cronos", ... pair_address: The pair's contract address (case-insensitive on EVM). Returns:
The first matching pair object as returned by DexScreener (with the
full Note: |
| list_latest_dex_tokensA | List the latest tokens that have set up a profile on DexScreener. A profile means the project has filled in description / website / socials on DexScreener — typically a sign of a newly-launched but at least somewhat promoted token. Useful as an early-signal feed for "what's new today?" NOTE: a profile does not imply legitimacy or liquidity. Cross-check with
Args: limit: Max tokens to return (the API itself returns up to ~30). Returns:
Array of token-profile objects with |
| list_top_boosted_tokensA | List currently top-boosted tokens on DexScreener (paid promotion). "Boosts" are paid promotion slots — projects pay to surface their token. Read these results with skepticism: high boost spend does NOT imply quality, traction or safety. This list is mostly useful as a signal of "what is being actively pushed right now" rather than "what is good". For an unbiased early-tokens view prefer Args: limit: Max tokens to return. Returns:
Array of boosted-token objects with |
| get_funding_rate_historyA | Get historical funding-rate time-series for a perpetual contract on one exchange. Use this for trend analysis on funding — "is funding turning positive?",
"how long has BTC funding been negative?", spotting funding cycles, or
feeding a series into a quant signal. For the single most-recent snapshot
use The funding interval varies by venue: Binance and OKX charge funding every 8 hours, Bybit every 1 hour for some perps, BitMEX every 8 hours, etc. Returned timestamps reflect each charge. Don't assume a uniform cadence when comparing series across exchanges. Args: exchange_id: CCXT exchange ID supporting perps, e.g. "binance", "okx", "bybit", "bitmex", "bitget", "bingx", "gate", "mexc", "kucoinfutures", "hyperliquid". symbol: Perp symbol with settle suffix. Linear (USDT-margined): "BTC/USDT:USDT". Inverse (coin-margined): "BTC/USD:BTC". since_ms: Optional unix-millis lower bound. If null, the exchange returns its default window (typically the most-recent N rows). limit: Max number of rows to return; clamped to [1, 1000]. Returns:
Array of rows oldest-first, each with |
| get_open_interestA | Get the current open interest (OI) for a perpetual contract on one exchange. Open interest is the total notional/contract count of outstanding positions on a venue. Reading OI alongside price:
Falls back to Args: exchange_id: CCXT exchange ID supporting perps. symbol: Perp symbol with settle suffix, e.g. "BTC/USDT:USDT" or "BTC/USD:BTC" for inverse. Returns:
Object with |
| compare_funding_ratesA | Compare the current funding rate for one perp across multiple exchanges, in parallel. Use this to find funding-rate arbitrage opportunities (long the venue
paying you, short the venue charging you) or to gauge how lopsided
positioning is across the market. The Symbol convention: linear USDT-margined perps use "BTC/USDT:USDT" on
most venues. BitMEX's flagship is the inverse contract "BTC/USD:BTC", so
if you pass a USDT linear symbol the BitMEX branch will return an error
inline — that's expected. Branches that fail (unsupported symbol, geo-
block, rate limit) return Args: symbol: CCXT unified perp symbol. Default "BTC/USDT:USDT". exchange_ids: Comma-separated CCXT exchange IDs. Default "binance,okx,bybit,bitmex". Returns:
|
| health_checkA | Parallel-ping every upstream data source and report status + latency. DEBUGGING tool. Call only when the user reports something is broken ("X is down", "data looks stale") or when you suspect an upstream is degraded. Do NOT call on every request — issues fresh network calls. Pings in parallel:
Returns:
Object with |
| compare_pricesA | Concurrently fetch the price of one coin from many sources and compare. Use for cross-source sanity checks, finding venue-vs-aggregator divergences, or simple arbitrage spotting. Contrast with:
Sources fanned out in parallel:
Args: coin_id: CoinGecko coin ID (e.g. "bitcoin"). vs_currency: Quote currency. "usd" works on all sources; others skip DexScreener. exchange_ids: Comma-separated CCXT exchange IDs. Returns:
Object with |
| get_consolidated_orderbookA | Fetch L2 order books from many exchanges in parallel and merge into one virtual book. Answers "where is the best bid/ask across the whole market?" — more useful
than per-venue Args:
symbol: CCXT unified symbol (e.g. "BTC/USDT"). Some exchanges may
reject the symbol (BadSymbol) — those go into Returns: Object with: - symbol, depth_per_exchange - exchanges_ok: list of exchange ids that responded - exchanges_error: list of {exchange, error} for failures - bids: merged bids sorted by price desc, capped at depth*len(ok), each entry {price, amount, exchange} - asks: merged asks sorted by price asc, capped likewise - best_bid, best_ask: top of merged book with attribution - spread_bps: (best_ask - best_bid) / mid * 10000 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| analyze_coin | Full briefing on a single coin: identity, price action, venues, synthesis. |
| compare_coins | Side-by-side comparison of multiple coins on the metrics that matter. |
| technical_analysis | Run the standard indicator bundle on an exchange's candles and summarize. |
| scan_funding_arbitrage | Compare perp funding rates across exchanges and flag the spread + outliers. |
| market_overview | Daily macro briefing: caps, dominance, sentiment, trending narratives, movers. |
| defi_health_check | Snapshot DeFi state: chain TVL, top protocols, stablecoin supply. |
| find_token_dex | Locate a token's deepest DEX market across chains and report price + liquidity. |
| yield_hunter | Surface top DeFi yield pools matching TVL / APY / chain / symbol filters. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| ccxt_exchanges | JSON array of every exchange ID the installed CCXT build supports. Use these IDs with `get_exchange_ohlcv`, `get_orderbook`, `get_funding_rate`, etc. Sourced live from `ccxt.exchanges`, sorted alphabetically. |
| popular_coin_ids | Markdown lookup table from common ticker symbols to CoinGecko coin IDs. CoinGecko's API keys off coin IDs ("bitcoin"), not tickers ("BTC"). Use this table to skip a `search` round-trip for the most-asked coins. |
| dex_supported_chains | Markdown list of chain IDs accepted by DexScreener tools. Pass any of these as the `chain` argument to `dex_search` / `get_dex_token` to scope a query to a specific chain. |
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ymylive/coin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server