npm install -g npx
claude mcp add --transport stdio coinstats npx -y @coinstats/coinstats-mcp --env COINSTATS_API_KEY=YOUR_API_KEY_HERE
{ "mcpServers": { "coinstats-mcp": { "command": "npx", "args": ["-y", "@coinstats/coinstats-mcp"], "env": { "COINSTATS_API_KEY": "${COINSTATS_API_KEY}" } } } }
YOUR_API_KEY
{ "mcpServers": { "coinstats-mcp": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "COINSTATS_API_KEY", "coinstats/coinstats-mcp" ], "env": { "COINSTATS_API_KEY": "${COINSTATS_API_KEY}" } } } }
npx -y @coinstats/coinstats-mcp --env COINSTATS_API_KEY=YOUR_API_KEY_HERE
Was this page helpful?