RobotScope RobotScope

MCP Server

让 Claude、Cursor 等任何 LLM 工具直接查询 RobotScope 的 190+ 家具身智能公司数据。 7 个工具,一行配置,无需 API Key。

什么是 MCP?

MCP(Model Context Protocol) 是 Anthropic 推出的开放协议,让 AI 模型能直接调用外部工具和数据源。 类比:就像浏览器通过 HTTP 获取网页,LLM 通过 MCP 获取结构化数据。

RobotScope MCP Server 把我们的公司数据库(估值、融资、技术路线、供应链关系等)暴露为标准 MCP 工具。 你在 Claude、Cursor、Windsurf 里问"宇树估值多少",LLM 直接调用我们的 server,返回带来源的事实数据。

7 个工具

📋

get_company_detail

拉取单家公司完整档案(团队/产品/技术路线/融资/风险)

slug: unitree / figure-ai / agility-robotics

⚖️

compare_companies

同时拉 2-5 家公司做横向对比

unitree vs figure-ai vs agility-robotics

🗺️

industry_landscape

产业链 4 层(整机/模型/部件/应用)+ 每层公司清单

layer=whole-robot / foundation-model / component

📅

list_recent_updates

最近 N 天有数据更新的公司

days=7 / days=30

💰

get_funding_summary

全部公司融资格局摘要

总融资规模 / 国家分布 / 产业链分布

📡

get_pulse

每日具身智能简报 Pulse 卡片

date=2026-06-17 / limit=10

📝

get_changelog

公司动态记录(变更时间线)

slug=unitree / days=30

适合谁

接入教程

Claude Code

终端执行一行命令即可:

gh copilot mcp add robotscope https://mcp.robotscope.net/mcp

或 Claude Desktop 的 Claude Desktop Config:

{
  "mcpServers": {
    "robotscope": {
      "url": "https://mcp.robotscope.net/mcp"
    }
  }
}

Cursor

~/.cursor/config.json 中添加:

{
  "mcpServers": {
    "robotscope": {
      "url": "https://mcp.robotscope.net/mcp"
    }
  }
}

任何 HTTP 客户端

直接发 JSON-RPC 请求:

curl -X POST https://mcp.robotscope.net/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

试试问 Claude

接入 MCP 后,在 Claude / Cursor 里问这些问题试试:

宇树科技的估值和最新融资轮次 中国人形机器人公司融资 Top 10 Figure AI 和 Agility Robotics 哪个部署更快 有哪些公司在做灵巧手 最近 7 天哪些公司有数据更新 对比宇树和 Figure 的产品线

开箱即用,无需 API Key

数据来源:REST API · 协议:MCP Streamable HTTP · 开源:GitHub

查看 MCP 端点 →