Allows you to query crypto information from coincap's public API - no API keys or registration required To get started, add this configuration to your Claude Desktop config file: MacOS: ~/Library/Application\ Support/Claude/claudedesktopconfig.json Windows: %APPDATA%/Claude/claudedesktopconfig.json To install Coincap for Claude Desktop automatically via Smithery: - Node.js 18+ Then, launch Claude
Add this skill
npx mdskills install QuantGeekDev/coincap-mcpClean cryptocurrency data MCP with useful tools, but declares overly broad permissions for simple API calls
1# Coincap MCP23[](https://smithery.ai/server/coincap-mcp)45## What does this server do?67Allows you to query crypto information from coincap's public API - no API keys or registration required89## ๐ Quick Start1011To get started, add this configuration to your Claude Desktop config file:1213**MacOS**: `~/Library/Application\ Support/Claude/claude_desktop_config.json`14**Windows**: `%APPDATA%/Claude/claude_desktop_config.json`1516```json17{18 "mcpServers": {19 "mongodb": {20 "command": "npx",21 "args": ["coincap-mcp"]22 }23 }24}25```2627### Installing via Smithery2829To install Coincap for Claude Desktop automatically via [Smithery](https://smithery.ai/server/coincap-mcp):3031```bash32npx -y @smithery/cli install coincap-mcp --client claude33```3435### Prerequisites3637- Node.js 18+38- npx3940Then, launch Claude Desktop and you're ready to go!4142## Sample Prompts4344- What is the price of bitcoin?45- What are the available crypto assets?46- What is the market cap of ethereum?4748## Tools4950#### Bitcoin Price Tool5152Gets price for Bitcoin specifically, it's a simple example of a primitive API call tool5354#### Get Crypto Price Tool5556Gets price for any cryptocurrency available on coincap API. It's a good example of how to get mandatory parameter data for your tool calls5758#### List Assets5960Gets a list of all crypto assets available in coincap API6162## Development - local build6364To build it locally:6566On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`67On Windows: `%APPDATA%/Claude/claude_desktop_config.json`6869```json70{71 "mcpServers": {72 "coincap-mcp": {73 "command": "/path/to/coincap-mcp/build/index.js"74 }75 }76}77```7879## Development8081Install dependencies:8283```bash84npm install85```8687Build the server:8889```bash90npm run build91```9293For development with auto-rebuild:9495```bash96npm run watch97```9899## ๐ License100101This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.102
Full transparency โ inspect the skill content before installing.