coinpaprika/dexpaprika-mcp

coinpaprika/dexpaprika-mcp

от coinpaprika
DexPaprika MCP сервер даёт AI-ассистентам живой доступ к криптовалютным и DEX данным на 33 блокчейнах. Без API-ключа — 14 инструментов для анализа токенов, пулов ликвидности и децентрализованных би...

DexPaprika MCP Server

A Model Context Protocol (MCP) server that provides on-demand access to DexPaprika's cryptocurrency and DEX data API. Built specifically for AI assistants like Claude to programmatically fetch real-time token, pool, and DEX data with zero configuration.

TL;DR

# Install globally
npm install -g dexpaprika-mcp

# Start the server
dexpaprika-mcp

# Or run directly without installation
npx dexpaprika-mcp

DexPaprika MCP connects Claude to live DEX data across multiple blockchains. No API keys required. Installation | Configuration | API Reference

Prefer zero setup? Use the hosted MCP server at mcp.dexpaprika.com — no installation, no API key, same 14 tools. See Hosted Alternative for transport endpoints.

Version 1.3.0 Update Highlights

New tools: getCapabilities (agent onboarding with workflows, synonyms, best practices) and getNetworkPoolsFilter (server-side pool filtering by volume, transactions, creation time).

Breaking: Parameters renamed to snake_case (poolAddresspool_address, tokenAddresstoken_address, orderByorder_by). Pagination is now 1-indexed. See CHANGELOG.md for full migration guide.

Инструменты были проиндексированы:
filterNetworkTokensтолько чтениеидемпотентныйвнешний мир

Фильтрует токены по объёму, ликвидности, FDV, транзакциям и времени создания. Проксирует запрос /networks/{network}/tokens/search с параметрами фильтра; строки возвращаются в поле results с курсорной пагинацией. ОБЯЗАТЕЛЬНО: network. ОПЦИОНАЛЬНО: limit, cursor, volume_24h_min/max, liquidity_usd_min/max, fdv_min/max, txns_24h_min, created_after/before, sort_by/order_by, sort_dir/sort.

Параметры
  • created_afternumber

    OPTIONAL: Only tokens created after this UNIX timestamp

  • created_beforenumber

    OPTIONAL: Only tokens created before this UNIX timestamp

  • cursorstring

    OPTIONAL: Pagination cursor. Pass next_cursor from a previous response to fetch the next page. Replaces the old page number.

  • fdv_maxnumber

    OPTIONAL: Maximum fully diluted valuation in USD

  • fdv_minnumber

    OPTIONAL: Minimum fully diluted valuation in USD

  • limitnumber

    OPTIONAL: Number of items per page (default: 50, max: 100)

  • liquidity_usd_maxnumber

    OPTIONAL: Maximum token liquidity in USD

  • liquidity_usd_minnumber

    OPTIONAL: Minimum token liquidity in USD

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • price_change_percentage_24h_maxnumber

    OPTIONAL: Maximum 24h price change, in percent

  • price_change_percentage_24h_minnumber

    OPTIONAL: Minimum 24h price change, in percent. Negatives are allowed, so -20 finds tokens down at least 20%. This is the only price-change window tokens carry; for 6h, 1h or 5m use getNetworkPoolsFilter.

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (default: 'volume_usd_24h'). Prefer the canonical names; short legacy names are still accepted. The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction (default: 'desc'). The REST API calls this parameter sort.

  • txns_24h_minnumber

    OPTIONAL: Minimum number of transactions in 24h

  • volume_24h_maxnumber

    OPTIONAL: Maximum 24h volume in USD

  • volume_24h_minnumber

    OPTIONAL: Minimum 24h volume in USD

getCapabilitiesтолько чтениеидемпотентныйвнешний мир

Возвращает возможности сервера, шаблоны рабочих процессов, сетевые синонимы, типичные ошибки и последовательности лучших практик. Используйте это для быстрой адаптации агентов. Параметры не требуются, кроме обоснования.

Параметры
  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

getDexPoolsтолько чтениеидемпотентныйвнешний мир

Получает пулы, принадлежащие одному конкретному DEX на одной сети, например все пулы Uniswap v3 на Ethereum. Проксирует /networks/{network}/pools/search с фильтром dex_name (старый эндпоинт /networks/{network}/dexes/{dex}/pools удалён): строки возвращаются в 'results' с курсорной пагинацией (has_next_page + next_cursor), а поле 24-часового объёма — volume_usd_24h. Только чтение, без ключа. Уже, чем getNetworkPools (одна биржа, а не вся сеть). Используйте для 'покажи пулы Raydium', 'топ пар на PancakeSwap' или 'ликвидность на Orca'. Сначала получите идентификатор DEX из getNetworkDexes или поиска и передайте поле dex_id из ответа ('uniswap_v3'), регистронезависимо. Не передавайте его поле dex_name ('Uniswap V3'): человекочитаемое имя возвращает HTTP 200 с пустым results[], а не ошибку, поэтому пустой ответ обычно означает, что отправлена неверная форма имени. Параметры: network (обязательный slug); dex (обязательный id, например 'uniswap_v3'; REST API называет этот query-параметр dex_name); limit (по умолчанию 10, макс 100); cursor (передайте предыдущий next_cursor для перелистывания); sort_by (по умолчанию 'volume_usd_24h', канонические поля *_24h, короткие устаревшие имена всё ещё принимаются, псевдоним order_by); sort_dir 'asc'/'desc' (по умолчанию 'desc', псевдоним sort). Старый номер страницы удалён: страница 2 и выше возвращают ошибку с указанием на cursor.

Параметры
  • cursorstring

    OPTIONAL: Pagination cursor. Pass next_cursor from a previous response to fetch the next page (read has_next_page to know if more remain). Replaces the old page number.

  • dexstringобязательный

    REQUIRED: the dex_id field from getNetworkDexes (e.g., 'uniswap_v3'), matched case-insensitively. Do not pass that response's dex_name field, the human display name (e.g., 'Uniswap V3'): it returns an empty results[] instead of an error, so a wrong value looks like a real but empty answer. The REST API calls this parameter dex_name.

  • limitnumber

    OPTIONAL: Number of items per page (default: 10, max: 100)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • pagenumber

    SUPERSEDED: the replacement endpoint is cursor-paginated and ignores page. page=1 (or 0) still works as the first page; page=2 or above returns a structured error telling you to use cursor.

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (default: 'volume_usd_24h'). Prefer the canonical *_24h names; short legacy names such as volume_usd are still accepted and normalized. The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction (default: 'desc'). The REST API calls this parameter sort.

getKeyStatusтолько чтениеидемпотентныйвнешний мир

Сообщает, отправляет ли этот сервер ключ API и какой план видит API. Используйте, когда вызовы ограничиваются по частоте или отклоняются, или когда пользователь спрашивает, работает ли его ключ DexPaprika. Не принимает аргументов и не читает данные рынка.

Параметры

Без параметров.

getNetworkDexesтолько чтениеидемпотентныйвнешний мир

Получить доступные DEX на конкретной сети. ОБЯЗАТЕЛЬНО: network. ОПЦИОНАЛЬНО: page, limit, sort_dir/sort, sort_by/order_by.

Параметры
  • limitnumber

    OPTIONAL: Number of items per page (default: 10, max: 100)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • pagenumber

    OPTIONAL: Page number for pagination (default: 1, 1-indexed)

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (only 'pool'). The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction, 'asc' or 'desc' (default: 'desc'). The REST API calls this parameter sort.

getNetworkPoolsтолько чтениеидемпотентныйвнешний мир

ОСНОВНАЯ ФУНКЦИЯ ПУЛА: получить топ пулов ликвидности в сети. Прокси /networks/{network}/pools/search: строки возвращаются под results с курсорной пагинацией (has_next_page + next_cursor). ОБЯЗАТЕЛЬНО: network. ОПЦИОНАЛЬНО: limit, cursor, sort_dir/sort, sort_by/order_by.

Параметры
  • cursorstring

    OPTIONAL: Pagination cursor. Pass next_cursor from a previous response to fetch the next page. Replaces the old page number.

  • limitnumber

    OPTIONAL: Number of items per page (default: 10, max: 100)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (default: 'volume_usd_24h'). Prefer the canonical *_24h names; short legacy names are still accepted. The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction (default: 'desc'). The REST API calls this parameter sort.

getNetworkPoolsFilterтолько чтениеидемпотентныйвнешний мир

Фильтрует пулы по объёму, ликвидности, транзакциям и времени создания. Проксирует /networks/{network}/pools/search с параметрами фильтра; строки возвращаются в results с курсорной пагинацией. ОБЯЗАТЕЛЬНО: network. ОПЦИОНАЛЬНО: limit, cursor, volume_24h_min/max, volume_7d_min/max, liquidity_usd_min/max, txns_24h_min, created_after, created_before, sort_by/order_by, sort_dir/sort.

Параметры
  • created_afternumber

    OPTIONAL: Only pools created after this UNIX timestamp

  • created_beforenumber

    OPTIONAL: Only pools created before this UNIX timestamp

  • cursorstring

    OPTIONAL: Pagination cursor. Pass next_cursor from a previous response to fetch the next page. Replaces the old page number.

  • limitnumber

    OPTIONAL: Number of items per page (default: 50, max: 100)

  • liquidity_usd_maxnumber

    OPTIONAL: Maximum pool liquidity in USD

  • liquidity_usd_minnumber

    OPTIONAL: Minimum pool liquidity in USD

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • price_change_percentage_1h_maxnumber

    OPTIONAL: Maximum 1h price change, in percent

  • price_change_percentage_1h_minnumber

    OPTIONAL: Minimum 1h price change, in percent

  • price_change_percentage_24h_maxnumber

    OPTIONAL: Maximum 24h price change, in percent

  • price_change_percentage_24h_minnumber

    OPTIONAL: Minimum 24h price change, in percent. Negatives are allowed, so -20 finds pools down at least 20%.

  • price_change_percentage_5m_maxnumber

    OPTIONAL: Maximum 5m price change, in percent

  • price_change_percentage_5m_minnumber

    OPTIONAL: Minimum 5m price change, in percent. The shortest window we carry, so it is the one to reach for on 'what is moving right now'.

  • price_change_percentage_6h_maxnumber

    OPTIONAL: Maximum 6h price change, in percent

  • price_change_percentage_6h_minnumber

    OPTIONAL: Minimum 6h price change, in percent

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (default: 'volume_usd_24h'). Prefer the canonical *_24h names; short legacy names are still accepted. The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction (default: 'desc'). The REST API calls this parameter sort.

  • txns_24h_minnumber

    OPTIONAL: Minimum number of transactions in 24h

  • volume_24h_maxnumber

    OPTIONAL: Maximum 24h volume in USD

  • volume_24h_minnumber

    OPTIONAL: Minimum 24h volume in USD

  • volume_7d_maxnumber

    OPTIONAL: Maximum 7d volume in USD

  • volume_7d_minnumber

    OPTIONAL: Minimum 7d volume in USD

getNetworksтолько чтениеидемпотентныйвнешний мир

НАЧНИТЕ ЗДЕСЬ: перечислите все поддерживаемые блокчейн-сети с текущим объемом за 24 часа и статистикой индексации. Сначала лучше вызвать getCapabilities, чтобы увидеть рабочие процессы и синонимы.

Параметры
  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

getPoolDetailsтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о пуле. ОБЯЗАТЕЛЬНО: network, pool_address. ОПЦИОНАЛЬНО: inversed.

Параметры
  • inversedboolean

    OPTIONAL: Whether to invert the price ratio (default: false)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • pool_addressstringобязательный

    REQUIRED: Pool address or identifier (e.g., '0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640')

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

getPoolOHLCVтолько чтениеидемпотентныйвнешний мир

Получить исторические данные о ценах (OHLCV) для пула. ОБЯЗАТЕЛЬНО: network, pool_address, start. ОПЦИОНАЛЬНО: end, limit, interval, inversed.

Параметры
  • endstring

    OPTIONAL: End time for historical data (max 1 year from start)

  • intervalenum

    OPTIONAL: Interval granularity (default: '24h')

  • inversedboolean

    OPTIONAL: Whether to invert the price ratio for alternative pair perspective (default: false)

  • limitnumber

    OPTIONAL: Number of data points to retrieve (default: 100, max: 366)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • pool_addressstringобязательный

    REQUIRED: Pool address or identifier

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • startstringобязательный

    REQUIRED: Start time for historical data (Unix timestamp, RFC3339 timestamp, or yyyy-mm-dd format)

getPoolTransactionsтолько чтениеидемпотентныйвнешний мир

Получить последние транзакции для пула. Используйте from/to для фильтрации по временному диапазону (UNIX-секунды с эпохи, результат ограничен последними 7 днями). ОБЯЗАТЕЛЬНО: network, pool_address. ОПЦИОНАЛЬНО: page, limit, cursor, from, to.

Параметры
  • cursorstring

    OPTIONAL: Transaction ID used for cursor-based pagination

  • fromnumber

    OPTIONAL: Filter transactions starting from this UNIX timestamp (inclusive). Results always capped to last 7 days.

  • limitnumber

    OPTIONAL: Number of items per page (default: 10, max: 100)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • pagenumber

    OPTIONAL: Page number for pagination, up to 100 pages (default: 1, 1-indexed)

  • pool_addressstringобязательный

    REQUIRED: Pool address or identifier

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • tonumber

    OPTIONAL: Filter transactions up to this UNIX timestamp (exclusive). Must be after 'from'.

getStatsтолько чтениеидемпотентныйвнешний мир

Получает общую статистику по экосистеме DexPaprika: количество проиндексированных цепочек, фабрик, пулов и токенов. Кроме rationale, параметры не требуются.

Параметры
  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

getTokenDetailsтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о токене. ОБЯЗАТЕЛЬНО: network, token_address.

Параметры
  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • token_addressstringобязательный

    REQUIRED: Token contract address (e.g., 'JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN' for Jupiter on Solana)

getTokenMultiPricesтолько чтениеидемпотентныйвнешний мир

Получает пакетные цены для нескольких токенов. Максимум 10 токенов за вызов, одна и та же сеть. ОБЯЗАТЕЛЬНО: network, tokens.

Параметры
  • networkstringобязательный

    REQUIRED: Network ID from getNetworks

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • tokensstring[]обязательный

    REQUIRED: Up to 10 token contract addresses on the same network.

getTokenPoolsтолько чтениеидемпотентныйвнешний мир

Получить пулы ликвидности, содержащие токен, в сети. Проксирует /networks/{network}/pools/search с фильтром token_address: строки возвращаются в results с курсорной пагинацией (has_next_page + next_cursor). Фильтр токена действует ТОЛЬКО в пределах сети; кросс-сетевой /pools/search игнорирует token_address, поэтому сначала используйте search, если не знаете сеть. Неизвестный token_address возвращает пустой массив results, а не ошибку. Устаревшие параметры inversed/reorder (переворот пары) и paired_token_address/address (фильтр второго токена в паре) не имеют аналогов на новой конечной точке и при передаче возвращают структурированную ошибку. ОБЯЗАТЕЛЬНЫЕ: network, token_address. ОПЦИОНАЛЬНЫЕ: limit, cursor, sort_dir/sort, sort_by/order_by.

Параметры
  • addressstring

    UNSUPPORTED (deprecated alias of paired_token_address): passing it returns a structured error.

  • cursorstring

    OPTIONAL: Pagination cursor. Pass next_cursor from a previous response to fetch the next page. Replaces the old page number.

  • inversedboolean

    UNSUPPORTED: the replacement endpoint has no pair-perspective flip. Passing true returns a structured error; invert prices client-side (1/price) instead.

  • limitnumber

    OPTIONAL: Number of items per page (default: 10, max: 100)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • paired_token_addressstring

    UNSUPPORTED: the replacement endpoint cannot filter by a second token. Passing it returns a structured error; filter results[].tokens client-side for pair queries.

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • reorderboolean

    UNSUPPORTED (deprecated alias of inversed): passing true returns a structured error.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (default: 'volume_usd_24h'). Prefer the canonical *_24h names; short legacy names are still accepted. The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction (default: 'desc'). The REST API calls this parameter sort.

  • token_addressstringобязательный

    REQUIRED: Token contract address. Results are restricted to pools on the given network containing this token. Unknown addresses return empty results, not an error.

getTopTokensтолько чтениеидемпотентныйвнешний мир

Получает топ токенов в сети, отсортированных по объёму, ликвидности, транзакциям, FDV или изменению цены за 24 часа. Прокси /networks/{network}/tokens/search: строки возвращаются в поле results (address, price_usd, volume_usd_24h, liquidity_usd, fdv_usd, txns_24h, price_change_percentage_24h) с курсорной пагинацией. Сортировка по цене не поддерживается, по умолчанию используется объём. ОБЯЗАТЕЛЬНО: network. ОПЦИОНАЛЬНО: limit, cursor, sort_by/order_by, sort_dir/sort.

Параметры
  • cursorstring

    OPTIONAL: Pagination cursor. Pass next_cursor from a previous response to fetch the next page. Replaces the old page number.

  • limitnumber

    OPTIONAL: Number of items per page (default: 50, max: 100)

  • networkstringобязательный

    REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana')

  • order_byenum

    OPTIONAL: alias of sort_by; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes order_by, so use this name when calling the REST API directly.

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

  • sortenum

    OPTIONAL: alias of sort_dir; both are accepted. Not deprecated at the REST layer: api.dexpaprika.com itself takes sort, so use this name when calling the REST API directly.

  • sort_byenum

    OPTIONAL (preferred): Field to sort by (default: 'volume_usd_24h'). Prefer the canonical names; short legacy names are still accepted. The REST API calls this parameter order_by.

  • sort_direnum

    OPTIONAL (preferred): Sort direction (default: 'desc'). The REST API calls this parameter sort.

searchтолько чтениеидемпотентныйвнешний мир

Ищет по ВСЕМ сетям токены, пулы и DEX по имени, символу или адресу. Хорошая отправная точка, когда вы не знаете конкретную сеть. ОБЯЗАТЕЛЬНО: query. ОПЦИОНАЛЬНО: limit (на категорию, применяется на стороне клиента).

Параметры
  • limitnumber

    OPTIONAL: Max results per category (tokens/pools/dexes), applied client-side

  • querystringобязательный

    REQUIRED: Search term (e.g., 'uniswap', 'bitcoin', or a token address)

  • rationalestringобязательный

    REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server instructions field for the full convention and worked examples.

Похожие MCP-сервера

kukapay/dex-pools-mcp

kukapay/dex-pools-mcp

MCP-сервер на CoinGecko даёт AI-агентам данные о пулах ликвидности DEX: новые, трендовые, топ-пулы, поиск по токену. Поддерживает много сетей, помогая трейдерам и разработчикам в аналитике и торгов...

Python1
kukapay/pancakeswap-poolspy-mcp

kukapay/pancakeswap-poolspy-mcp

Отслеживает новые пулы ликвидности на PancakeSwap (BSC) в реальном времени. Предоставляет DeFi‑аналитикам, трейдерам и разработчикам метрики: адрес, токены, объём. Поддерживает настройку окна и лим...

Python10
kukapay/uniswap-poolspy-mcp

kukapay/uniswap-poolspy-mcp

MCP сервер для отслеживания новых пулов ликвидности Uniswap V3 на 9 сетях (Ethereum, Base, Arbitrum и др.). Полезен DeFi аналитикам и трейдерам, даёт свежие данные с сортировкой по времени, объёму ...

Python10
bitcompare/mcp-server

bitcompare/mcp-server

MCP-сервер для доступа к криптовалютной доходности, ценам и рыночным данным в реальном времени. 18 инструментов для работы с историческими и текущими ставками по стейкингу, кредитованию, дериватива...

Dockerfile1
JamesANZ/bitcoin-mcp

JamesANZ/bitcoin-mcp

MCP сервер для реальных данных блокчейна биткоина через mempool.space – без API-ключей. Запрашивайте статистику адресов, транзакции, блоки и UTXO прямо в Cursor или Claude Desktop. Биткоин-инструме...

TypeScript4
x402-index/x402search-mcp

x402-index/x402search-mcp

MCP сервер для поиска по 14 000+ HTTP API с поддержкой x402. Платный поиск (0.01 USDC) на Base mainnet. Удобен разработчикам AI-агентов, ищущим готовые API для крипто, DeFi и блокчейн запросов.

JavaScript2
© Каталог MCP, 2026. Все права защищены.
Проект не аффилирован с Anthropic и любыми упомянутыми продуктами.
Все названия и торговые марки принадлежат их владельцам.
Контакты для связи: hi@mcp-katalog.ru

Лука Никитин