home / mcp / cryptoquant mcp server
Provides on-chain analytics access via MCP, including real-time metrics and AI-driven interpretations for queries like MVRV, SOPR, and whale movements.
Configuration
View docs{
"mcpServers": {
"cryptoquantofficial-mcp": {
"command": "npx",
"args": [
"-y",
"@cryptoquant_official/mcp"
],
"env": {
"CRYPTOQUANT_API_KEY": "your-api-key"
}
}
}
}CryptoQuant MCP Server brings on-chain analytics directly into your AI assistant, enabling natural language queries, real-time metrics, market insights, and whale tracking to enhance your decision making.
You connect an MCP client to the CryptoQuant MCP Server and then ask questions or request data in natural language. You can query metrics like MVRV, SOPR, exchange flows, and funding rates, and receive AI-backed interpretations and alerts. Use standard MCP tooling to initialize a session, discover available endpoints, and query data through the server to power your AI agent.
Prerequisites you need before starting:
- Node.js v18 or newer
- A CryptoQuant API key for access to on-chain data
Follow these steps to install and configure the CryptoQuant MCP Server integration with your MCP client.
1) Create your MCP config in the client where you run MCP tools.
2) Add the CryptoQuant MCP server entry to the config:
```
{
"mcpServers": {
"cryptoquant": {
"command": "npx",
"args": ["-y", "@cryptoquant_official/mcp"]
}
}
}
```
3) If you will provide an API key via environment variables, include it in the config:
```
{
"mcpServers": {
"cryptoquant": {
"command": "npx",
"args": ["-y", "@cryptoquant_official/mcp"],
"env": {
"CRYPTOQUANT_API_KEY": "your-api-key"
}
}
}
}
```
4) Restart your MCP client to apply the changes.
5) Call initialize() to verify the connection is working. You should receive your plan information and be ready to query data.For local development, you can clone the MCP server repository, install dependencies, and build before usage in your environment.
git clone https://github.com/CryptoQuantOfficial/mcp.git
cd mcp
npm install
npm run build
```
Then use the built server according to your client setup.Start a session with the API key and return plan information for your usage tier.
List all available MCP endpoints provided by CryptoQuant for data access.
Fetch parameter and description details for a specific endpoint.
Query raw API data from CryptoQuant endpoints.
Provide metric descriptions and applicable thresholds for on-chain data.
Return a list of supported assets such as BTC, ETH, ALT, Stablecoins, ERC20 tokens, TRX, XRP.
Clear the current session and credentials, effectively logging out.