codex-claude-bridge vs time
并排对比,帮你在这两个 MCP server 之间做选择。
codex-claude-bridge by abhishekgahlot2 | time 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 之间建立双向桥梁。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
codex-claude-bridge · 使用场景
- 使 Claude Code 和 Codex CLI 能够对话,结合各自的优势
- 创建两个 AI 代理可以协作解决编程问题的环境
- 监控和可能调解两个 AI 编码助手之间的对话
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
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 界面中查看对话。
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}