Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AIFire in da houseCheck it out free

coincap-mcp

MCP.Pizza Chef: QuantGeekDev

The coincap-mcp server is an MCP server that enables querying of cryptocurrency information directly from Coincap's public API. It offers real-time access to crypto asset prices, market data, and other relevant information without the need for API keys or user registration. Designed for easy integration, it supports quick setup with Node.js and npx, making it ideal for developers building crypto-related applications or AI agents that require up-to-date crypto market data. The server is compatible with Claude Desktop and can be installed via Smithery for streamlined deployment.

Use This MCP server To

Query real-time cryptocurrency prices Retrieve list of available crypto assets Access market data without API keys Integrate crypto data into AI workflows Build crypto price tracking applications Fetch crypto info for trading bots

README

Coincap MCP

smithery badge

What does this server do?

Allows you to query crypto information from coincap's public API - no API keys or registration required

πŸš€ Quick Start

To get started, 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

{
  "mcpServers": {
    "mongodb": {
      "command": "npx",
      "args": ["coincap-mcp"]
    }
  }
}

Installing via Smithery

To install Coincap for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install coincap-mcp --client claude

Prerequisites

  • Node.js 18+
  • npx

Then, launch Claude Desktop and you're ready to go!

Sample Prompts

  • What is the price of bitcoin?
  • What are the available crypto assets?
  • What is the market cap of ethereum?

Tools

Bitcoin Price Tool

Gets price for Bitcoin specifically, it's a simple example of a primitive API call tool

Get Crypto Price Tool

Gets price for any cryptocurrency available on coincap API. It's a good example of how to get mandatory parameter data for your tool calls

List Assets

Gets a list of all crypto assets available in coincap API

Development - local build

To build it locally:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "coincap-mcp": {
      "command": "/path/to/coincap-mcp/build/index.js"
    }
  }
}

Development

Install dependencies:

npm install

Build the server:

npm run build

For development with auto-rebuild:

npm run watch

πŸ“œ License

This project is licensed under the MIT License - see the LICENSE file for details.

coincap-mcp FAQ

How do I install the coincap-mcp server?
Install Node.js 18+ and npx, then run 'npx -y @smithery/cli install coincap-mcp --client claude' or configure manually in Claude Desktop config.
Do I need an API key to use coincap-mcp?
No, coincap-mcp accesses Coincap's public API which requires no API keys or registration.
What platforms support coincap-mcp?
It supports MacOS and Windows via Claude Desktop integration.
Can I use coincap-mcp with LLMs like Claude, OpenAI, or Gemini?
Yes, coincap-mcp is designed to work with Claude Desktop and can be integrated with models like Claude, OpenAI, and Gemini.
What prerequisites are required to run coincap-mcp?
You need Node.js version 18 or higher and npx installed on your system.
How do I configure coincap-mcp in Claude Desktop?
Add the coincap-mcp server configuration to your Claude Desktop config JSON file under 'mcpServers' with the appropriate command and args.
Is coincap-mcp suitable for production use?
Yes, it provides reliable access to Coincap's public API for real-time crypto data without requiring API keys.
Can I query specific cryptocurrencies like Bitcoin or Ethereum?
Yes, you can query prices and data for specific cryptocurrencies such as Bitcoin, Ethereum, and others supported by Coincap.