turn-based-game-mcp vs time
并排对比,帮你在这两个 MCP server 之间做选择。
turn-based-game-mcp by github-samples | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 31 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
turn-based-game-mcp · 概述
一款基于MCP的回合制游戏网页应用,具有AI对手,支持井字棋和石头剪刀布游戏。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
turn-based-game-mcp · 使用场景
- 通过研究文档完善的游戏服务器代码学习MCP实现
- 使用MCP构建具有AI对手的回合制游戏应用
- 创建可视化展示MCP功能的教育工具
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
turn-based-game-mcp · 安装
安装
- 克隆仓库:
git clone https://github.com/github-samples/turn-based-game-mcp.git
cd turn-based-game-mcp- 安装依赖:
npm install- 首先构建共享包(必需):
npm run build --workspace=shared- 启动开发服务器:
**前端(Next.js):**
npm run dev --workspace=web**MCP服务器:**
npm run dev --workspace=mcp-serverClaude Desktop配置
将以下内容添加到您的Claude Desktop配置文件config.json中:
{
"mcpServers": {
"turn-based-games": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "./turn-based-game-mcp/mcp-server"
}
}
}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"]
}
}
}