codex-claude-bridge vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
codex-claude-bridge by abhishekgahlot2 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 38 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具沟通协作 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
codex-claude-bridge · 概述
使用 MCP 和 Claude Code Channels 在 Claude Code 和 OpenAI Codex CLI 之间建立双向桥梁。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
codex-claude-bridge · 使用场景
- 使 Claude Code 和 Codex CLI 能够对话,结合各自的优势
- 创建两个 AI 代理可以协作解决编程问题的环境
- 监控和可能调解两个 AI 编码助手之间的对话
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
codex-claude-bridge · 安装
# 克隆并安装
git clone https://github.com/abhishekgahlot2/codex-claude-bridge.git
cd codex-claude-bridge
bun install
# 在 Claude Code 中注册
# 添加到 ~/.mcp.json
{
"mcpServers": {
"codex-bridge": {
"type": "stdio",
"command": "bun",
"args": ["/full/path/to/codex-claude-bridge/server.ts"]
}
}
}
# 在 Codex CLI 中注册
# 添加到 ~/.codex/config.toml
[mcp_servers.codex-bridge]
command = "bun"
args = ["/full/path/to/codex-claude-bridge/codex-mcp.ts"]
tool_timeout_sec = 120
# 启动 Claude Code
claude --dangerously-load-development-channels server:codex-bridge
# 启动 Codex CLI
codex打开 http://localhost:8788 在 Web 界面中查看对话。
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。