null
Overview
What is CoinMarket MCP Server?
CoinMarket MCP Server is an open-source project designed to provide a robust backend solution for cryptocurrency market data. It allows developers to access real-time and historical data from various cryptocurrency exchanges, making it an essential tool for anyone looking to build applications that require cryptocurrency market insights.
Features of CoinMarket MCP Server
- Real-Time Data Access: The server provides real-time updates on cryptocurrency prices, trading volumes, and market capitalization.
- Historical Data: Users can access historical market data, which is crucial for analysis and backtesting trading strategies.
- Multi-Exchange Support: CoinMarket MCP Server supports multiple cryptocurrency exchanges, allowing users to aggregate data from various sources.
- API Integration: The server offers a well-documented API, making it easy for developers to integrate it into their applications.
- Open Source: Being an open-source project, it allows for community contributions and enhancements, ensuring continuous improvement and innovation.
How to Use CoinMarket MCP Server
- Installation: Clone the repository from GitHub and follow the installation instructions provided in the README file.
- Configuration: Configure the server settings to connect to your desired cryptocurrency exchanges.
- API Access: Use the provided API endpoints to fetch market data. You can retrieve real-time prices, historical data, and more.
- Integration: Integrate the server with your application to display cryptocurrency data or perform trading operations.
Frequently Asked Questions
What programming languages can I use with CoinMarket MCP Server?
You can use any programming language that supports HTTP requests to interact with the CoinMarket MCP Server API. Popular choices include Python, JavaScript, and Java.
Is CoinMarket MCP Server free to use?
Yes, CoinMarket MCP Server is an open-source project, and it is free to use and modify under the MIT license.
Can I contribute to the project?
Absolutely! Contributions are welcome. You can submit issues, feature requests, or pull requests on the GitHub repository.
How often is the data updated?
The server provides real-time data updates, but the frequency may vary based on the exchange's API limits and the server's configuration.
Where can I find the documentation?
Documentation is available in the GitHub repository, including setup instructions, API usage, and examples.
Details
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 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 listingsget-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 package manager
Install
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"
Claude Desktop
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Docker
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=<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:
- Install uv following the instructions above
- Restart your terminal/Claude Desktop after installation
- Verify installation: Run
uv --version
in terminal - 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
Server Config
{
"mcpServers": {
"coinmarket-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--anjor--coinmarket-mcp-server--coinmarket-mcp-server",
"coinmarket_service"
],
"env": {
"COINMARKET_API_KEY": "coinmarket-api-key"
}
}
}
}