# mcp-crypto-price

> MCP Server

This repository hosts an MCP server providing cryptocurrency analysis using the CoinCap API, offering real-time price data, market analysis, and historical trends through an easy-to-use interface. This repository hosts an

## Overview

- **Category:** Developer Tools
- **Language:** TypeScript
- **Stars:** 39
- **Forks:** 2
- **Owner:** truss44
- **GitHub:** https://github.com/truss44/mcp-crypto-price
- **Created:** 2025-01-02T02:32:17+00:00
- **Updated:** 2025-03-27T06:24:42+00:00
- **Source:** https://model-context-protocol.com/servers/crypto-price-real-time-market-analysis

## Setup

## Setup
Add this configuration to your Claude Desktop config file:

- **MacOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%/Claude/claude_desktop_config.json`

```json
{
  "mcpServers": {
    "mcp-crypto-price": {
      "command": "npx",
      "args": ["-y", "mcp-crypto-price"]
    }
  }
}
```

## Optional: CoinCap API Key

For higher rate limits, add an API key to your configuration:

```json
{
  "mcpServers": {
    "mcp-crypto-price": {
      "command": "npx",
      "args": ["-y", "mcp-crypto-price"],
      "env": {
        "COINCAP_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
```

> **Important Note**: CoinCap is sunsetting their v2 API. This MCP supports both v2 and v3 APIs:
> - If you provide a `COINCAP_API_KEY`, it will attempt to use the v3 API first, falling back to v2 if necessary
> - Without an API key, it will use the v2 API (which will eventually be discontinued)
> - It's recommended to obtain an API key from [pro.coincap.io/dashboard](https://pro.coincap.io/dashboard) as the v2 API will be completely deactivated in the future

Launch Claude Desktop to start using the crypto analysis tools.

## Tools

## Available Tools

		1. get-crypto-price (Gets current price and 24h stats for any cryptocurrency.)
		2. get-market-analysis (Provides detailed market analysis.)
		3. get-historical-analysis (Analyzes historical price data.)
