null

Created byanjoranjor

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

  1. Installation: Clone the repository from GitHub and follow the installation instructions provided in the README file.
  2. Configuration: Configure the server settings to connect to your desired cryptocurrency exchanges.
  3. API Access: Use the provided API endpoints to fetch market data. You can retrieve real-time prices, historical data, and more.
  4. 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

MseeP.ai Security Assessment Badge

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 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 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

<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:

### 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:

  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

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"
      }
    }
  }
}

Project Info

Author
anjor
Created At
Jul 18, 2025
Star
36
Language
Python
Tags
-

null Alternative

For some alternatives to null that you may need, we provide you with sites divided by category.

MCP server that provides Claude with the ability to use OpenAI's GPT assistants.

An MCP server that installs other MCP servers for you

MCP Server for AI Agent Marketplace Index from DeepNLP

Analyzes your codebase by identifying important files based on dependency relationships. Generates diagrams and importance scores for each file, assisting AI assistants in understanding the codebase. Automatically parses popular programming languages such as Python, C, C++, Rust, Zig, and Lua.

A Model Context Protocol server implementation for Kagi's API

View More >>