Crypto Funds MCP

Crypto Funds MCP

An MCP server that provides AI agents with structured, real-time data on cryptocurrency investment funds, enabling deeper due diligence and portfolio intelligence.

Category
访问服务器

README

Crypto Funds MCP

An MCP server that provides AI agents with structured, real-time data on cryptocurrency investment funds, enabling deeper due diligence and portfolio intelligence.

GitHub License Python Version Status

Features

  • Tools for Data Access:

    • get_all_funds(): Retrieve a complete list of all investors and funds.
    • search_funds(tier, type, sortBy, sortDirection, limit, skip): Search and filter funds with sorting and pagination.
    • get_fund_basic(fund_id): Get basic metrics for a specific fund (e.g., tier, portfolio size, ROI).
    • get_fund_full(fund_id): Fetch comprehensive metrics, including investment focus, recent rounds, and stages.
    • get_fund_team(fund_id): Retrieve detailed team information with roles and social links.
  • Formatted Outputs: All responses are returned as ASCII tables for easy readability in MCP clients.

  • Asynchronous API Calls: Uses httpx for efficient, async HTTP requests.

  • Environment Configuration: API key management via .env file with dotenv.

  • Error Handling: Graceful handling of API errors and missing data.

Installation

Prerequisites

  • Python 3.10+
  • uv: Package and virtual environment manager for Python (recommended for dependency management).
  • A Cryptorank API key (sign up at Cryptorank)

Steps

  1. Clone the repository:

    git clone https://github.com/kukapay/crypto-funds-mcp.git
    cd crypto-funds-mcp
    
  2. Install dependencies:

    uv sync
    
  3. Create a .env file in the root directory and add your API key:

    CRYPTORANK_API_KEY=your_api_key_here
    
  4. Install to Claude Desktop:

    Install the server as a Claude Desktop application:

    uv run mcp install main.py --name "Crypto Funds"
    

    Configuration file as a reference:

    {
       "mcpServers": {
           "Crypto Funds": {
               "command": "uv",
               "args": [ "--directory", "/path/to/crypto-funds-mcp", "run", "main.py" ],
               "env": { "CRYPTORANK_API_KEY": "cryptorank_api_key"}
           }
       }
    }
    

    Replace /path/to/crypto-funds-mcp with your actual installation path, and replace cryptorank_api_key with your API key from Cryptorank.

Usage

Tool Usage Examples

Below are examples for each tool, including a natural language prompt (how you might ask an AI client to invoke it), the corresponding tool call, and a sample result (formatted as an ASCII table). Note that actual results depend on your Cryptorank API key and current data; these are illustrative examples based on public information.

get_all_funds()

Prompt:

Show me a complete list of all crypto investors and funds available.

Tool Call:

get_all_funds()

Example Result:

+------+--------------------------------+--------+-------------+
|   ID | Name                           |   Tier | Type        |
+======+================================+========+=============+
|    1 | YZi Labs (Prev. Binance Labs)  |      1 | Venture     |
|    2 | Andreessen Horowitz (a16z)     |      1 | Venture     |
|    3 | Pantera Capital                |      1 | Venture     |
|    4 | Coinbase Ventures              |      1 | Venture     |
|    5 | Dragonfly Capital              |      1 | Venture     |
+------+--------------------------------+--------+-------------+

search_funds(tier, type, sortBy, sortDirection, limit, skip)

Prompt:

Search for Tier 1 Venture funds, sorted by retail ROI in descending order, and show the top 100 results.

Tool Call:

search_funds(tier=[1], type=["Venture"], sortBy="retailRoi", sortDirection="DESC", limit=100, skip=0)

Example Result:

+------+--------------------------------+--------------------------------+--------+-------------+----------------+--------------------+-------------+--------------+-------------+--------------------+
|   ID | Key                            | Name                           |   Tier | Type        | Jurisdiction       | Portfolio   | Funding Rounds | Retail ROI  | Lead Investments   |
+======+================================+================================+========+=============+====================+=============+================+=============+====================+
|    1 | binance-labs                   | YZi Labs (Prev. Binance Labs)  |      1 | Venture     | Cayman Islands     | 200+        | 150+           | 500x        | 50+                |
|    2 | andreessen-horowitz            | Andreessen Horowitz (a16z)     |      1 | Venture     | United States      | 150+        | 120+           | 450x        | 40+                |
|    3 | pantera-capital                | Pantera Capital                |      1 | Venture     | United States      | 100+        | 90+            | 400x        | 30+                |
+------+--------------------------------+--------------------------------+--------+-------------+----------------+--------------------+-------------+--------------+-------------+--------------------+

get_fund_basic(fund_id)

Natural Language Prompt:

Give me the basic metrics for the fund with ID 1, like its tier, portfolio, and ROI.

Tool Call:

get_fund_basic(1)

Example Result:

Fund Metrics:
+--------------------+-------------------------+
| Field              | Value                   |
+====================+=========================+
| ID                 | 1                       |
| Key                | binance-labs            |
| Name               | YZi Labs (Prev. Binance Labs) |
| Tier               | 1                       |
| Type               | Venture                 |
| Jurisdiction       | Cayman Islands          |
| Portfolio          | 200+                    |
| Funding Rounds     | 150+                    |
| Retail ROI         | 500x                    |
| Lead Investments   | 50+                     |
+--------------------+-------------------------+

Focus Areas:
+------+---------------+-----------+
|   ID | Name          | Percent   |
+======+===============+===========+
|   10 | DeFi          | 40%       |
|   20 | Web3          | 30%       |
|   30 | AI            | 20%       |
+------+---------------+-----------+

Top Investments (Last 12 Months):
+------+----------+----------------------+---------+
|   ID | Symbol   | Name                 | Logo    |
+======+==========+======================+=========+
| 1001 | APT      | Aptos                | url...  |
| 1002 | SUI      | Sui                  | url...  |
+------+----------+----------------------+---------+

get_fund_full(fund_id)

Prompt:

Provide comprehensive data and investment details for the fund with ID 2.

Tool Call:

get_fund_full(2)

Example Result:

Comprehensive Fund Data:
+--------------------+---------------------------------+
| Field              | Value                           |
+====================+=================================+
| ID                 | 2                               |
| Key                | andreessen-horowitz             |
| Name               | Andreessen Horowitz (a16z)      |
| Tier               | 1                               |
| Type               | Venture                         |
| Jurisdiction       | United States                   |
| Description        | Leading VC in crypto and tech   |
| Portfolio          | 150+                            |
| Funding Rounds     | 120+                            |
| Retail ROI         | 450x                            |
| Lead Investments   | 40+                             |
+--------------------+---------------------------------+

Links:
+-----------+---------------------+
| Type      | Value               |
+===========+=====================+
| website   | https://a16z.com    |
| twitter   | https://x.com/a16z  |
+-----------+---------------------+

Focus Areas:
+------+---------------+-----------+
|   ID | Name          | Percent   |
+======+===============+===========+
|   10 | Blockchain    | 50%       |
|   20 | Gaming        | 25%       |
|   30 | Infrastructure| 25%       |
+------+---------------+-----------+

Top Investments (Recent):
+------+----------+----------------------+---------+
|   ID | Symbol   | Name                 | Logo    |
+======+==========+======================+=========+
| 2001 | FLOW     | Flow                 | url...  |
| 2002 | AXS      | Axie Infinity        | url...  |
+------+----------+----------------------+---------+

Funding Locations:
+---------+---------+
| Code    | Count   |
+=========+=========+
| US      | 80      |
| SG      | 20      |
+---------+---------+

Recent Funding Rounds:
+------+---------------+---------+---------+------------+
|   ID | Name          | Logo    | Raise   |     Date   |
+======+===============+=========+=========+============+
| 3001 | Project A     | url...  | $10M    | 2024-05-01 |
| 3002 | Project B     | url...  | $15M    | 2024-03-15 |
+------+---------------+---------+---------+------------+

Average Rounds Raise:
+----------------+--------------+-----------+
| Raise From     | Raise To     | Percent   |
+================+==============+===========+
| $1M            | $5M          | 40%       |
| $5M            | $20M         | 60%       |
+----------------+--------------+-----------+

Investment Stages:
+---------------+-----------+
| Type          | Percent   |
+===============+===========+
| Seed          | 50%       |
| Series A      | 30%       |
| Series B      | 20%       |
+---------------+-----------+

get_fund_team(fund_id)

Prompt:

Who is on the team for the fund with ID 3? Include their roles and social links.

Tool Call:

get_fund_team(3)

Example Result:

Fund Team Details:
+------+--------------------+---------------------+------------+
|   ID | Name               | Jobs                |   Priority |
+======+====================+=====================+============+
|   11 | Paul Joey          | CEO, Founder        |          1 |
|   12 | Dan Larimer        | Managing Partner    |          2 |
|   13 | Jill Valentine     | Investment Director |          3 |
+------+--------------------+---------------------+------------+

Team Social Links:
+---------------------+--------------+---------------------+
| Member Name         | Link Type    | Link Value          |
+=====================+==============+=====================+
| Paul Joey           | linkedin     | https://linkedin... |
| Paul Joey           | twitter      | https://x.com/pjoey |
| Dan Larimer         | linkedin     | https://linkedin... |
+---------------------+--------------+---------------------+

License

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

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选