Skip to content
VS Code

coingecko mcp server for VS Code

io.github.cyanheads/coingecko-mcp-server

Crypto market data via CoinGecko — prices, markets, history, trending, and deep coin metadata.

client:VS Code transport:stdio runtime:npm

Install coingecko mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "coingecko-api-key",
      "description": "COINGECKO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-log-level",
      "description": "MCP_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "coingecko-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cyanheads/coingecko-mcp-server"
      ],
      "env": {
        "COINGECKO_API_KEY": "${input:coingecko-api-key}",
        "MCP_LOG_LEVEL": "${input:mcp-log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

coingecko mcp server in other clients