Coinmarket MCP Server The server implements a few of the Coinmarket API endpoints - Custom coinmarket:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype The server implements two tools: - get-currency-listings: Get the latest currency listings - get-quotes: Get quotes for tokens - Takes "slug" (example: bitcoin) or "symbol" (example: B
Add this skill
npx mdskills install anjor/coinmarket-mcp-serverProvides cryptocurrency data via CoinMarketCap API with clear setup instructions
Coinmarket MCP Server
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 tokens
Requires 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
Development/Unpublished Servers Configuration
"mcpServers": {
"coinmarket_service": {
"command": "uv",
"args": [
"--directory",
"/path/to/coinmarket_service",
"run",
"coinmarket_service"
],
"env": {
"COINMARKET_API_KEY": ""
}
}
}
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_api_key_here coinmarket-service
For Claude Desktop configuration with Docker:
"mcpServers": {
"coinmarket_service": {
"command": "docker",
"args": [
"run",
"--rm",
"-e",
"COINMARKET_API_KEY=",
"coinmarket-service"
]
}
}
If you see this error, it means uv is not installed or not in your PATH:
uv --version in terminal/path/to/coinmarket_service with the actual path to your cloned repositoryCOINMARKET_API_KEY is validpyproject.tomlInstall via CLI
npx mdskills install anjor/coinmarket-mcp-serverCoinmarket MCP server is a free, open-source AI agent skill. Coinmarket MCP Server The server implements a few of the Coinmarket API endpoints - Custom coinmarket:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype The server implements two tools: - get-currency-listings: Get the latest currency listings - get-quotes: Get quotes for tokens - Takes "slug" (example: bitcoin) or "symbol" (example: B
Install Coinmarket MCP server with a single command:
npx mdskills install anjor/coinmarket-mcp-serverThis downloads the skill files into your project and your AI agent picks them up automatically.
Coinmarket MCP server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.