cryptopanic-mcp-server
Provide latest cryptocurrency news to AI agents.
Overview
cryptopanic-mcp-server is a server that provides the latest cryptocurrency news to AI agents, powered by CryptoPanic.
To use the server, configure it with your CryptoPanic API key and set up the server entry in your configuration file. You can then call the get_crypto_news function to fetch news articles.
- Fetches the latest cryptocurrency news, analysis, and videos. - Configurable to retrieve different types of content. - Supports fetching multiple pages of news articles.
- Providing real-time cryptocurrency news updates to trading bots.
- Enriching AI agents with the latest market analysis.
- Aggregating video content related to cryptocurrency trends.
Add to your AI client
Use these steps to connect cryptopanic-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"cryptopanic-mcp-server-kukapay": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cryptopanic-mcp-server-kukapay"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"cryptopanic-mcp-server-kukapay": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cryptopanic-mcp-server-kukapay"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"cryptopanic-mcp-server-kukapay": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cryptopanic-mcp-server-kukapay"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"cryptopanic-mcp-server-kukapay": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cryptopanic-mcp-server-kukapay"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cryptopanic-mcp-server-kukapay": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cryptopanic-mcp-server-kukapay"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"cryptopanic-mcp-server-kukapay": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cryptopanic-mcp-server-kukapay"
]
}
}
}FAQ
What types of content can I fetch?
You can fetch news, analysis, and videos related to cryptocurrencies.
How do I get a CryptoPanic API key?
You can obtain an API key by signing up at [CryptoPanic](https://cryptopanic.com/developers/api/).
Is there a limit to the number of pages I can fetch?
Yes, you can fetch a maximum of 10 pages of news articles.