经 AI Skill Hub 精选评估,开源MCP工具 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
开源MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
开源MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/Cyborg7-com/cyborg
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp--": {
"command": "npx",
"args": ["-y", "cyborg"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 开源MCP工具 执行以下任务... Claude: [自动调用 开源MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp__": {
"command": "npx",
"args": ["-y", "cyborg"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="https://raw.githubusercontent.com/Cyborg7-com/cyborg/main/assets/cyborg7-logo.png" alt="Cyborg7" width="92" /> </p>
<p align="center"> <strong>Collaborative AI agents — humans and agents on different machines, working together in shared workspaces.</strong> </p>
<p align="center"> Each person runs their own daemon, agents execute locally, and a relay broker connects everyone. No cloud runs your code. </p>
<p align="center"> <a href="#quick-start">Quickstart</a> · <a href="docs/README.md">Docs</a> · <a href="#connect-your-agents">Providers</a> · <a href="#cybos">Cybos</a> · <a href="#architecture">Architecture</a> · <a href="#develop">Develop</a> · <a href="CONTRIBUTING.md">Contributing</a> </p>
<p align="center"> <a href="LICENSE"><img src="https://img.shields.io/github/license/Cyborg7-com/cyborg?style=flat-square&color=blue" alt="AGPL-3.0 License" /></a> <a href="https://github.com/getpaseo/paseo"><img src="https://img.shields.io/badge/built%20on-Paseo-7c4dff?style=flat-square" alt="Built on Paseo" /></a> <a href="https://github.com/Cyborg7-com/cyborg/stargazers"><img src="https://img.shields.io/github/stars/Cyborg7-com/cyborg?style=flat-square&color=yellow" alt="Stars" /></a> <a href="https://github.com/Cyborg7-com/cyborg/graphs/contributors"><img src="https://img.shields.io/github/contributors/Cyborg7-com/cyborg?style=flat-square" alt="Contributors" /></a> </p>
---
Cyborg7 is a distributed, multi-daemon platform where humans and AI agents are teammates in the same workspace. Each person runs their own daemon; agents execute locally on that machine, with full access to its tools, configs, and credentials. A relay broker connects daemons so a team can collaborate across machines — sending prompts, sharing context, and streaming agent output in real time.
There is no central server that runs your agents and no cloud execution of your code. Your agents live where your work lives. PostgreSQL holds the shared state every teammate sees — workspaces, channels, messages, tasks — while each daemon keeps a local SQLite cache for fast, offline-friendly reads.
It is built as a fork of Paseo, extending it with workspaces, channels, tasks, and Cybos (custom AI personalities). Paseo's agent lifecycle, providers, MCP integration, and core protocol are inherited from upstream and remain under the same AGPL-3.0 license. See NOTICE for attribution.
| 🖥️ **Distributed local daemons** | Every machine runs its own daemon. Agents are spawned as local child processes with Cyborg7 MCP tools injected — full access to your tools and credentials, nothing executes in the cloud. |
| 🔌 **Multi-provider** | Drive Claude Code, Codex, Copilot, OpenCode, and Pi through one interface. Pick the right model and harness per agent. |
| 💬 **Workspaces & channels** | Organize work into workspaces and channels. Every message — human or agent — is persisted to shared storage and visible to the whole team. |
| 🧬 **Cybos** | Custom AI personalities with their own identity, system prompt, and model preferences. Define a cybo.json + soul.md pair and run it standalone or inside any workspace. |
| 🖧 **Cross-device** | Desktop (Electron), web (Svelte 5), and a terminal CLI, all driving the same daemon and shared state. |
| 🔒 **Self-hosted, no telemetry** | Run the whole thing on your own machines. PostgreSQL for shared state, SQLite for local cache. No telemetry, no forced logins. |
[!NOTE] Cyborg7 is free and open source under AGPL-3.0. If you run a modified version as a network service, the AGPL requires you to offer that modified source to its users. SeeLICENSEandNOTICE.
---
@anthropic-ai/claude-agent-sdk (Claude) and ACP over stdio (Codex, Qwen, …)Cyborg7 has two deployment shapes that run from the same code:
relay-standalone.ts is a standalone broker (Hono HTTP + WebSocket) for teams whose daemons need to reach each other across networks. It brokers messages and queries shared PostgreSQL directly; it does not run agents — those always stay on each user's own daemon.---
git clone https://github.com/Cyborg7-com/cyborg.git
cd cyborg
pnpm install
pnpm dev
pnpm dev starts the daemon on port 6780 and the UI dev server on 5173. Open the UI, and you have a Slack-style workspace driven by your local daemon.
cp packages/server/.env.example packages/server/.env
| Variable | What it does |
|---|---|
DATABASE_URL | PostgreSQL connection string. Setting it switches the daemon into **connected** (multi-user) mode; leaving it unset keeps it **solo** on SQLite. |
CYBORG7_JWT_SECRET | JWT signing secret. **Required in production** — the daemon refuses to boot with the development default outside development. |
Cyborg7 runs in two modes, auto-detected from your environment:
DATABASE_URL. The daemon uses SQLite only. Best for working alone or developing against a single machine.DATABASE_URL. The daemon keeps its SQLite cache and also writes through to a shared PostgreSQL, so teammates' daemons share workspaces, channels, messages, and tasks. The relay brokers messages between daemons.开源MCP工具,具有较高的潜力和应用价值
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
AI Skill Hub 点评:开源MCP工具 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | cyborg |
| Topics | aiagent-platformmcp |
| GitHub | https://github.com/Cyborg7-com/cyborg |
| License | NOASSERTION |
| 语言 | TypeScript |
收录时间:2026-06-27 · 更新时间:2026-06-27 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端