https://github.com/QuantGeekDev/coincap-mcp
A coincap mcp server to access crypto data from coincap API
https://github.com/QuantGeekDev/coincap-mcp
Last synced: about 2 months ago
JSON representation
A coincap mcp server to access crypto data from coincap API
- Host: GitHub
- URL: https://github.com/QuantGeekDev/coincap-mcp
- Owner: QuantGeekDev
- License: mit
- Created: 2024-12-08T20:38:43.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-01-30T16:30:02.000Z (8 months ago)
- Last Synced: 2025-08-03T22:44:55.462Z (2 months ago)
- Language: TypeScript
- Homepage:
- Size: 38.1 KB
- Stars: 80
- Watchers: 2
- Forks: 21
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - coincap-mcp - Real-time cryptocurrency market data integration MCP server using CoinCap's public API. ([Read more](/details/coincap-mcp.md)) `mcp` `cryptocurrency` `market-data` `real-time` `api-integration` (Blockchain & Crypto MCP Servers)
- awesome-mcp-list - QuantGeekDev/coincap-mcp - mcp?style=social)](https://github.com/QuantGeekDev/coincap-mcp): Provides real-time cryptocurrency market data from CoinCap. (Uncategorized / Uncategorized)
- awesome-mcp-zh - QuantGeekDev/coincap-mcp
- best-of-mcp-servers - GitHub
- awesome-mcp-servers - QuantGeekDev/coincap-mcp - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys (Legend / 💰 <a name="finance--fintech"></a>Finance & Fintech)
- awesome-mcp-servers - QuantGeekDev/coincap-mcp - Real-time cryptocurrency market data integration using CoinCap's public API, providing access to crypto prices and market information without API keys (Legend / 💰 <a name="finance--fintech"></a>Finance & Fintech)
- awesome-mcp-servers - CoinCap - A MCP server that provides real-time cryptocurrency market data through CoinCap's public API without requiring authentication (Community Servers)
- awesome-mcp-servers - CoinCap - A MCP server that provides real-time cryptocurrency market data through CoinCap's public API without requiring authentication (Community Servers)
- Awesome-MCP-Servers-directory - CoinCap - A MCP server that provides real-time cryptocurrency market data through CoinCap's public API without requiring authentication (Finance)
- awesome-mcp-servers - QuantGeekDev/coincap-mcp - CoinCapのパブリックAPIを使用したリアルタイム暗号通貨市場データ統合、APIキー不要で暗号通貨価格と市場情報へのアクセスを提供 (サーバー実装 / 💰 <a name="finance--fintech"></a>金融・フィンテック)
- awesome-mcp-servers - CoinCap Data Server - A coincap mcp server to access crypto data from coincap API (Table of Contents / Finance)
- awesome-mcp-servers - CoinCap Data Server - A coincap mcp server to access crypto data from coincap API (Table of Contents / Finance)
- mcp-index - Coincap Crypto Price Server - Query real-time cryptocurrency information from Coincap's public API, including prices, market caps, and asset listings for a variety of cryptocurrencies. No API keys or registration are required to access the data. (APIs and HTTP Requests)
README
# Coincap MCP
[](https://smithery.ai/server/coincap-mcp)
## 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````json
{
"mcpServers": {
"mongodb": {
"command": "npx",
"args": ["coincap-mcp"]
}
}
}
```### Installing via Smithery
To install Coincap for Claude Desktop automatically via [Smithery](https://smithery.ai/server/coincap-mcp):
```bash
npx -y @smithery/cli install coincap-mcp --client claude
```### Prerequisites
- Node.js 18+
- npxThen, 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````json
{
"mcpServers": {
"coincap-mcp": {
"command": "/path/to/coincap-mcp/build/index.js"
}
}
}
```## Development
Install dependencies:
```bash
npm install
```Build the server:
```bash
npm run build
```For development with auto-rebuild:
```bash
npm run watch
```## 📜 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.