Rootdata MCP Server

这是一个基于 [Model Context Protocol (MCP)](https://github.com/microsoft/model-context-protocol) 的服务器,用于集成 RootData API,提供加密货币和区块链项目的数据查询功能。

Local serverstdioPython

What is the Rootdata MCP server?

Most developer tooling work still happens through a UI a human drives. Rootdata MCP server moves it into the conversation instead. 这是一个基于 Model Context Protocol (MCP) 的服务器,用于集成 RootData API,提供加密货币和区块链项目的数据查询功能。.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • search — 根据关键词搜索项目/VC/人物的简要信息
  • get_project — 根据项目 ID 获取项目的详细信息
  • get_organization — 根据机构 ID 获取风投机构的详细信息
  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — The Installation tool exposed by this server

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What it needs from you

Configuration is passed through the environment: ROOTDATA_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Python 3.10 或更高版本 * uv 包管理器(推荐)

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Rootdata's toolset — search, get_project, get_organization and 2 more — is a fair guide to whether it matches your workflow. It is maintained by jincai; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
search根据关键词搜索项目/VC/人物的简要信息
get_project根据项目 ID 获取项目的详细信息
get_organization根据机构 ID 获取风投机构的详细信息
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationThe Installation tool exposed by this server.

How to install the Rootdata MCP server

3. 添加以下配置:

```json
{
  "mcpServers": {
    "rootdata": {
      "command": "/path/to/uv",
      "args": [
        "--directory",
        "/absolute/path/to/rootdata-mcp-server",
        "run",
        "server.py"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.10 或更高版本 * uv 包管理器(推荐)
VariableDescriptionRequired
ROOTDATA_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Rootdata to search.
  • Use Rootdata to get project.
  • Use Rootdata to get organization.

Frequently asked questions

It connects Rootdata to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (search, get_project, get_organization, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Rootdata directly.