drio
Open app

Awesome Crypto MCP Servers

Source

A collection of crypto MCP servers.

Catalog onlyCatalog onlySTDIO

Overview

Awesome Crypto MCP Servers is a curated collection of Model Context Protocol (MCP) servers specifically designed for cryptocurrency applications.

Users can explore various MCP servers through the provided links, and utilize tutorials to learn how to implement and manage these servers effectively.

  • A comprehensive list of MCP servers for cryptocurrency. - Tutorials for using MCP tools and managing servers. - Links to various server implementations for real-time cryptocurrency data.
  1. Sending USDC for free using MCP technology.
  2. Accessing real-time cryptocurrency market data without authentication.
  3. Managing and discovering MCP servers through a desktop application.

Add to your AI client

Use these steps to connect Awesome Crypto MCP Servers 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": {
    "awesome-crypto-mcp-servers-badkk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-crypto-mcp-servers-badkk"
      ]
    }
  }
}

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": {
    "awesome-crypto-mcp-servers-badkk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-crypto-mcp-servers-badkk"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "awesome-crypto-mcp-servers-badkk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-crypto-mcp-servers-badkk"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "awesome-crypto-mcp-servers-badkk": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-crypto-mcp-servers-badkk"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "awesome-crypto-mcp-servers-badkk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-crypto-mcp-servers-badkk"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "awesome-crypto-mcp-servers-badkk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-crypto-mcp-servers-badkk"
      ]
    }
  }
}

FAQ

What is MCP?

Model Context Protocol (MCP) is a framework for building and managing server applications in various contexts, including cryptocurrency.

Are the servers free to use?

Yes, many of the listed servers provide free access to their services.

How can I contribute to the project?

Contributions can be made by submitting new server implementations or improving existing ones through pull requests on GitHub.