Coinmarket
[](https://mseep.ai/app/anjor-coinmarket-mcp-server)
# Coinmarket MCP server
Coinmarket MCP Server
<a href="https://glama.ai/mcp/servers/6ag7ms62ns"><img width="380" height="200" src="https://glama.ai/mcp/servers/6ag7ms62ns/badge" alt="Coinmarket MCP server" /></a>
## Components
### Resources
The server implements a few of the [Coinmarket API](https://coinmarketcap.com/api/documentation/v1/#section/Introduction) endpoints
- Custom coinmarket:// URI scheme for accessing individual notes
- Each note resource has a name, description and text/plain mimetype
### Tools
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: BTC) as optional string argument
## Configuration
Requires coinmarket API key.
## Quickstart
### Prerequisites
- Python 3.12 or higher
- [uv](https://docs.astral.sh/uv/getting-started/installation/) package manager
### Install
Install uv if you haven't already:
```bash
# macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
```
#### Claude Desktop
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>
#### Docker
You can also run the server using Docker:
```bash
# 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:
```json
"mcpServers": {
"coinmarket_service": {
"command": "docker",
"args": [
"run",
"--rm",
"-e",
"COINMARKET_API_KEY=<insert api key>",
"coinmarket-service"
]
}
}
```
## Troubleshooting
### "spawn uv ENOENT" Error
If you see this error, it means `uv` is not installed or not in your PATH:
1. **Install uv** following the instructions above
2. **Restart your terminal/Claude Desktop** after installation
3. **Verify installation**: Run `uv --version` in terminal
4. **Update PATH**: Make sure uv is in your system PATH
### Configuration Issues
- Replace `/path/to/coinmarket_service` with the actual path to your cloned repository
- Ensure your `COINMARKET_API_KEY` is valid
- The path should point to the root directory containing `pyproject.toml`
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: get_currency_listings retrieves a list of cryptocurrencies, while get_quotes fetches specific price quotes. There is no overlap or ambiguity between these functions, making it easy for an agent to select the right tool.
Both tools follow a consistent verb_noun naming pattern with 'get_' prefix and snake_case formatting. This uniformity makes the tool set predictable and easy to understand at a glance.
With only 2 tools, the server feels thin for a cryptocurrency data domain. Key operations like historical data, market metrics, or exchange information are missing, suggesting the surface is underdeveloped for typical agent workflows in this area.
The tool set is severely incomplete for cryptocurrency data. It lacks essential operations such as historical price data, market cap rankings, exchange rates, or detailed asset information. Agents will face significant gaps when trying to perform comprehensive analysis or monitoring tasks.