An MCP server that provides cryptocurrency project data from Mobula.io to AI agents. - Fetch Project Data: Retrieve comprehensive project details (e.g., market data, tokenomics, and links) from Mobula. - Structured Output: Format project data into a well-organized Markdown document with sections for overview, market data, investors, exchanges, token distribution, and release schedules. - Language
Add this skill
npx mdskills install kukapay/crypto-projects-mcpComprehensive crypto data MCP server with clear setup and examples, but over-scoped permissions
1# Crypto Projects MCP Server23An MCP server that provides cryptocurrency project data from [Mobula.io](https://mobula.io/) to AI agents.45<a href="https://glama.ai/mcp/servers/@kukapay/crypto-projects-mcp">6 <img width="380" height="200" src="https://glama.ai/mcp/servers/@kukapay/crypto-projects-mcp/badge" alt="crypto-projects-mcp MCP server" />7</a>891011121314## Features1516- **Fetch Project Data**: Retrieve comprehensive project details (e.g., market data, tokenomics, and links) from Mobula.17- **Structured Output**: Format project data into a well-organized Markdown document with sections for overview, market data, investors, exchanges, token distribution, and release schedules.18- **Language Support**: Customize output language based on system locale or user-specified settings.1920## Installation2122### Prerequisites2324- Python 3.10 or higher25- [uv](https://docs.astral.sh/uv/) for package management and running the project26- Mobula API access (no authentication required for public endpoints)2728### Setup29301. **Clone the Repository**:31 ```bash32 git clone https://github.com/kukapay/crypto-projects-mcp.git33 cd crypto-projects-mcp34 ```35362. **Install Dependencies**:37 ```bash38 uv sync39 ```4041## Usage4243### Running in Development Mode4445Test the server using the MCP Inspector:46```bash47uv run mcp dev main.py48```4950### Integrating with Claude Desktop5152Install the server in Claude Desktop for LLM interaction:53```bash54uv run mcp install main.py --name "Crypto Projects"55```5657### Example Interaction5859The server provides two primary interfaces: a **tool** to fetch raw data and a **prompt** to format it into a structured Markdown document.6061#### 1. Using the `get_project_data` Tool6263The `get_project_data` tool retrieves raw JSON data for a specified cryptocurrency project. This is useful for applications needing unprocessed data.6465```python66await get_project_data("avalanche")67```6869This returns a dictionary containing details like price, market cap, blockchain, and social links for Avalanche. Example output:70```json71{72 "name": "Avalanche",73 "symbol": "AVAX",74 "blockchains": ["Avalanche C-Chain"],75 "price": 35.12,76 "market_cap": 1234567890,77 ...78}79```8081#### 2. Using the `format_project_data` Prompt8283The `format_project_data` prompt fetches data using the `get_project_data` tool and formats it into a comprehensive Markdown document. This prompt is designed for LLM applications to present structured, human-readable information about a cryptocurrency project.8485```python86# format_project_data("avalanche") # use system locale87format_project_data("avalanche", lang="en_US") # use en_US88```8990This generates a Markdown document with detailed sections. Example output for Avalanche:9192```markdown93# Avalanche Project Information9495## Overview96- **Name**: Avalanche97- **Symbol**: AVAX98- **Chain**: Avalanche C-Chain99- **Contract Address**: 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7100- **Audit Report**: https://quantstamp.com/blog/quantstamp-enhancing-the-security-of-avalanche101- **Description**: Avalanche is a high throughput smart contract blockchain platform. Validators secure the network through a proof-of-stake consensus protocol. It is said to be fast, low cost, and environmental friendly.102103## Market Data104- **Price**: $19.45105- **Market Cap**: $8,130,398,992106- **Volume (24h)**: $48,238,792107- **Total Supply**: 454,405,245108- **Circulating Supply**: 417,951,478109110## Links111- **Website**: https://www.avax.network112- **Twitter**: https://twitter.com/avax113- **Discord**: https://www.avax.network/114115## Investors116- **Lead Investor**: Yes117- **Name**: Polychain Capital118- **Type**: Ventures Capital119- **Description**: Polychain Capital is a cryptocurrency-focused investment management firm and hedge fund.120- **Lead Investor**: Yes121- **Name**: Dragonfly Capital122- **Type**: Ventures Capital123- **Description**: Dragonfly Capital Partners is a venture capital firm that focuses on investments in the blockchain and cryptocurrency space.124- **Lead Investor**: Yes125- **Name**: Bitmain126- **Type**: Ventures Capital127- **Description**: Bitmain is a China-based technology company that specializes in the design and manufacture of hardware for cryptocurrency mining.128- **Lead Investor**: Yes129- **Name**: Galaxy130- **Type**: Ventures Capital131- **Description**: Galaxy is a digital asset and blockchain leader helping institutions, startups, and qualified individuals shape a changing economy.132- **Lead Investor**: Yes133- **Name**: NGC Ventures (NEO Global Capital)134- **Type**: Ventures Capital135- **Description**: NGC Ventures is one of the largest institutional investors of blockchain technologies.136- **Lead Investor**: Yes137- **Name**: Initialized Capital138- **Type**: Ventures Capital139- **Description**: Not available140- **Lead Investor**: Yes141- **Name**: Three Arrows Capital142- **Type**: Ventures Capital143- **Description**: Not available144- **Lead Investor**: No145- **Name**: a16z (Andreessen Horowitz)146- **Type**: Ventures Capital147- **Description**: Andreessen Horowitz is a prominent venture capital firm based in Menlo Park, California.148- **Lead Investor**: No149- **Name**: Fundamental Labs150- **Type**: Ventures Capital151- **Description**: An investment company specialized in Blockchain sector.152- **Lead Investor**: No153- **Name**: Lemniscap154- **Type**: Ventures Capital155- **Description**: Lemniscap is an investment firm specializing in investments in emerging cryptoassets and blockchain companies.156- **Lead Investor**: No157- **Name**: Naval Ravikant158- **Type**: Angel Investor159- **Description**: Naval Ravikant is the CEO and a co-founder of AngelList.160- **Lead Investor**: No161- **Name**: MetaStable Capital162- **Type**: Ventures Capital163- **Description**: Manage Crypto Asset Hedge Funds.164- **Lead Investor**: No165- **Name**: LedgerPrime166- **Type**: Ventures Capital167- **Description**: LedgerPrime is a quantitative and systematic digital asset investment firm.168- **Lead Investor**: No169- **Name**: Digital Asset Capital Management (DACM)170- **Type**: Ventures Capital171- **Description**: Specialist, global investment manager in the digital asset sector.172- **Lead Investor**: No173- **Name**: HashKey Capital174- **Type**: Ventures Capital175- **Description**: HashKey Capital is a blockchain and cryptocurrency-focused venture capital and investment firm.176- **Lead Investor**: No177- **Name**: Balaji Srinivasan178- **Type**: Angel Investor179- **Description**: Balaji S. Srinivasan is the CTO of Coinbase and cofounder of Counsyl, Earn, Teleport, and Coin Center.180181## Exchanges182- Binance: AVAX/USDT183- Coinbase: AVAX/USD184- OKX: AVAX/USDT185- Bybit: AVAX/USDT186- Kraken: AVAX/EUR187- WhiteBIT: Not available188- HTX: Not available189- P2B: Not available190- KuCoin: Not available191- Bitunix: Not available192193## Token Distribution194- Foundation: 9.26%195- Airdrop: 2.5%196- Team: 10%197- Public Sale Option A1: 1%198- Public Sale Option A2: 8.3%199- Public Sale Option B: 0.67%200- Community and Development Endowment: 7%201- Testnet Incentive Program: 0.31%202- Strategic Partners: 5%203- Staking Rewards: 50%204- Private Sale: 3.46%205- Seed Sale: 2.5%206207## Token Release Schedule208- Sep 2020: 40,466,016 tokens (Seed Round, Private Sale, Public Sales, etc.)209- Dec 2020: 45,188,596.8 tokens (Team, Airdrop, Foundation, etc.)210- Mar 2021: 45,188,596.8 tokens (Team, Airdrop, Foundation, etc.)211- Jun 2021: 45,188,596.8 tokens (Team, Airdrop, Foundation, etc.)212- Sep 2021: 19,502,596.8 tokens (Team, Airdrop, Foundation, etc.)213- Dec 2021: 19,502,596.8 tokens (Team, Airdrop, Foundation, etc.)214- Mar 2022: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)215- Jun 2022: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)216- Sep 2022: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)217- Dec 2022: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)218- Mar 2023: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)219- Jun 2023: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)220- Sep 2023: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)221- Dec 2023: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)222- Mar 2024: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)223- Jun 2024: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)224- Sep 2024: 9,541,800 tokens (Team, Airdrop, Foundation, Strategic Partners)225- Dec 2024: 1,666,800 tokens (Foundation)226- Mar 2025: 1,666,800 tokens (Foundation)227- Jun 2025: 1,666,800 tokens (Foundation)228- Sep 2025: 1,666,800 tokens (Foundation)229- Dec 2025: 1,666,800 tokens (Foundation)230- Mar 2026: 1,666,800 tokens (Foundation)231- Jun 2026: 1,666,800 tokens (Foundation)232- Sep 2026: 1,666,800 tokens (Foundation)233- Dec 2026: 1,666,800 tokens (Foundation)234- Mar 2027: 1,666,800 tokens (Foundation)235- Jun 2027: 1,666,800 tokens (Foundation)236- Sep 2027: 1,666,800 tokens (Foundation)237- Dec 2027: 1,666,800 tokens (Foundation)238- Mar 2028: 1,666,800 tokens (Foundation)239- Jun 2028: 1,666,800 tokens (Foundation)240- Sep 2028: 1,666,800 tokens (Foundation)241- Dec 2028: 1,666,800 tokens (Foundation)242- Mar 2029: 1,666,800 tokens (Foundation)243- Jun 2029: 1,666,800 tokens (Foundation)244- Sep 2029: 1,666,800 tokens (Foundation)245- Dec 2029: 1,666,800 tokens (Foundation)246- Mar 2030: 1,666,800 tokens (Foundation)247```248249## License250251This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Full transparency — inspect the skill content before installing.