> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dexpaprika.com/llms.txt
> Use this file to discover all available pages before exploring further.

# All DexPaprika tools, SDKs and integrations

> Every official DexPaprika tool in one place: MCP servers, SDKs for TypeScript, Python, Go and PHP, the Rust CLI, the n8n node, the LangChain package, the Claude plugin, and agent skills. Install commands for each.

Everything official we ship for DexPaprika, with the install command for each. All of it reads the same API: 36 blockchains, 230+ DEXes, 36M+ pools and 33M+ tokens.

<Info>
  Version numbers are deliberately not listed here, because they go stale faster than a docs page does. Each link goes to the canonical registry, which always shows the current release.
</Info>

## Which one do I want?

| If you want to                          | Use                                                              |
| --------------------------------------- | ---------------------------------------------------------------- |
| Give an AI agent live DEX data          | [Hosted MCP server](#hosted-mcp-server)                          |
| Write code in TS, Python, Go or PHP     | [SDKs](#sdks)                                                    |
| Query from a terminal or a shell script | [CLI](#cli)                                                      |
| Build a no-code automation              | [n8n community node](#n8n)                                       |
| Build a Python agent chain              | [LangChain package](#langchain)                                  |
| Work in Claude Code                     | [Claude plugin](#claude-plugin) or [agent skills](#agent-skills) |
| Stream prices or reserves live          | [Streaming API](#streaming)                                      |
| Call the API directly                   | [REST API reference](/api-reference/introduction)                |

## MCP servers

Two ways to connect an AI agent. Both expose the same data; the hosted server needs no install.

### Hosted MCP server

Nothing to install. Point any MCP client at the URL:

```json theme={null}
{ "mcpServers": { "dexpaprika": { "url": "https://mcp.dexpaprika.com/sse" } } }
```

Streamable HTTP is also available at `https://mcp.dexpaprika.com/streamable-http`. See the [hosted MCP server guide](/ai-integration/hosted-mcp-server), the [full tools reference](/ai-integration/mcp-tools), and the [client setup pages](/ai-integration/mcp-clients) for Cursor, VS Code, Codex and others.

### Self-hosted MCP server

Runs locally over stdio, published on npm as [`dexpaprika-mcp`](https://www.npmjs.com/package/dexpaprika-mcp):

```bash theme={null}
npx dexpaprika-mcp
```

Setup and the tool list are on the [MCP server page](/ai-integration/mcp). The self-hosted build exposes the read tools; the hosted server adds feedback submission.

## SDKs

| Language   | Package                                                                                   | Install                                           |
| ---------- | ----------------------------------------------------------------------------------------- | ------------------------------------------------- |
| TypeScript | [`dexpaprika-sdk`](https://www.npmjs.com/package/dexpaprika-sdk)                          | `npm install dexpaprika-sdk`                      |
| Python     | [`dexpaprika-sdk`](https://pypi.org/project/dexpaprika-sdk/)                              | `pip install dexpaprika-sdk`                      |
| Go         | [`dexpaprika-sdk-go`](https://github.com/coinpaprika/dexpaprika-sdk-go)                   | `go get github.com/coinpaprika/dexpaprika-sdk-go` |
| PHP        | [`coinpaprika/dexpaprika-sdk`](https://packagist.org/packages/coinpaprika/dexpaprika-sdk) | `composer require coinpaprika/dexpaprika-sdk`     |

Quickstarts: [TypeScript](/get-started/sdk-ts), [Go](/get-started/sdk-go), [Python](/get-started/sdk-python), [PHP](/get-started/sdk-php).

## CLI

A Rust CLI with real-time SSE streaming built in, on [crates.io](https://crates.io/crates/dexpaprika-cli):

```bash theme={null}
cargo install dexpaprika-cli
```

See the [CLI tutorial](/tutorials/cli) for commands and output formats.

## Agent and automation integrations

### n8n

The [`n8n-nodes-dexpaprika`](https://www.npmjs.com/package/n8n-nodes-dexpaprika) community node gives you typed Token, Pool and Network operations, and works as an AI Agent tool. On self-hosted n8n, go to **Settings > Community Nodes > Install** and enter:

```
n8n-nodes-dexpaprika
```

Full setup, plus the no-install alternative using n8n's built-in MCP Client Tool, is on the [n8n page](/ai-integration/n8n).

### LangChain

[`langchain-dexpaprika`](https://pypi.org/project/langchain-dexpaprika/) provides ready-made tools and a toolkit:

```bash theme={null}
pip install langchain-dexpaprika
```

See the [LangChain page](/ai-integration/langchain). For CrewAI and the Vercel AI SDK, both of which consume the hosted MCP server directly, see [CrewAI](/ai-integration/crewai) and [Vercel AI SDK](/ai-integration/vercel-ai-sdk).

### Claude plugin

Adds the MCP server, a DeFi data analyst agent, and four analysis skills to Claude Code:

```
/plugin marketplace add coinpaprika/claude-marketplace
/plugin install dexpaprika@coinpaprika-plugins
```

Walkthrough on the [Claude Code plugin guide](/ai-integration/claude-code-plugin-guide).

### Agent skills

Portable skills that teach any agent the endpoints and response shapes, from [coinpaprika/skills](https://github.com/coinpaprika/skills):

```bash theme={null}
npx skills add github.com/coinpaprika/skills/
```

Skills do not auto-update: the installed copy is a snapshot, so re-run the command to refresh it. Details on the [skills page](/ai-integration/skills).

### Agent landing page

[agents.dexpaprika.com](https://agents.dexpaprika.com) is a single markdown-first page written for agents to read directly, with the endpoint list and streaming quickstart. The raw skill file is at [dexpaprika.com/agents/skill.md](https://dexpaprika.com/agents/skill.md).

## Streaming

Server-sent events for live token prices and pool reserves at `streaming.dexpaprika.com`. Start with the [streaming introduction](/streaming/introduction) and the [quick start](/streaming/tutorials/quick-start).

<Note>
  Each update delivered over a stream counts as one request against your monthly quota, the same as a REST call. Because updates are pushed only when the price moves, budget for the update rate of what you subscribe to rather than the number of connections. See [rate limits](/knowledge-base/rate-limits).
</Note>

## Where else you can find us

DexPaprika's MCP server is listed in the [official MCP registry](https://registry.modelcontextprotocol.io) as `com.dexpaprika/dexpaprika`, on [Glama](https://glama.ai/mcp/servers/coinpaprika/dexpaprika-mcp), and on [Smithery](https://smithery.ai/servers/coinpaprika/dexpaprika).

## Getting started

No API key is needed to start. A free registered key raises your monthly quota, and Pro raises it further with a higher per-minute rate. See [rate limits](/knowledge-base/rate-limits) and [API Pro](/api-pro/introduction).
