anjor/coinmarket-mcp-server
Platform-specific configuration:
{
"mcpServers": {
"coinmarket-mcp-server": {
"command": "npx",
"args": [
"-y",
"coinmarket-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://mseep.ai/app/anjor-coinmarket-mcp-server)
Coinmarket MCP Server
<a href="https://glama.ai/mcp/servers/6ag7ms62ns"></a>
The server implements a few of the Coinmarket API endpoints
The server implements two tools:
get-currency-listings: Get the latest currency listingsget-quotes: Get quotes for tokensRequires coinmarket API key.
Install uv if you haven't already:
# macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json
<details> <summary>Development/Unpublished Servers Configuration</summary>
"mcpServers": {
"coinmarket_service": {
"command": "uv",
"args": [
"--directory",
"/path/to/coinmarket_service",
"run",
"coinmarket_service"
],
"env": {
"COINMARKET_API_KEY": "<insert api key>"
}
}
}</details>
You can also run the server using Docker:
# Build the image
docker build -t coinmarket-service .
# Run the container
docker run -e COINMARKET_API_KEY=your_Loading reviews...