youtube-mcp-server vs time
并排对比,帮你在这两个 MCP server 之间做选择。
youtube-mcp-server by 0GiS0 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体开发者工具AI / LLM 工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
youtube-mcp-server · 概述
一个实用的 MCP 服务器,集成了 YouTube API,支持 stdio 和 SSE 两种传输方式。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
youtube-mcp-server · 使用场景
- 通过 AI 助手获取 YouTube 频道信息和统计数据
- 构建支持多种传输方式(stdio 和 SSE)的 MCP 服务器
- 通过实际示例学习 MCP 实现模式
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
youtube-mcp-server · 安装
安装
选项 1:使用 stdio 传输的 MCP 服务器
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-stdio
npm install
cp .env-sample .env
# 编辑 .env 文件添加你的 YouTube API 密钥
npm run build选项 2:使用 SSE 传输的 MCP 服务器
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-remote
npm install
cp .env-sample .env
# 编辑 .env 文件添加你的 YouTube API 密钥
npm run build && npm startClaude Desktop 配置
添加到 claude_desktop_config.json 文件:
{
"mcpServers": {
"youtube-stdio": {
"command": "node",
"args": ["/path/to/mcp-stdio/build/index.js"]
},
"youtube-remote": {
"url": "http://localhost:3000"
}
}
}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"]
}
}
}