time vs google-drive-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | google-drive-mcp by piotr-agier | |
|---|---|---|
| Stars | ★ 85,748 | ★ 151 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 本地文件系统云存储效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
google-drive-mcp · 概述
一个功能全面的 MCP 服务器,可通过 OAuth 认证管理 Google Drive 文件、文档、表格、幻灯片和日历。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
google-drive-mcp · 使用场景
- 自动创建和组织 Google Drive 中的项目文档
- 通过 AI 助手管理日历事件和安排会议
- 通过自然语言搜索和分析电子表格和文档
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"]
}
}
}google-drive-mcp · 安装
安装
选项 1:使用 npx(推荐)
# 运行服务器(首次运行时自动进行身份验证)
npx @piotr-agier/google-drive-mcp
# 可选:如需要,手动运行身份验证
npx @piotr-agier/google-drive-mcp auth选项 2:本地安装
- 克隆并安装:
``bash git clone https://github.com/piotr-agier/google-drive-mcp.git cd google-drive-mcp npm install ``
- 设置凭据:
```bash # 复制示例文件 cp gcp-oauth.keys.example.json gcp-oauth.keys.json
# 编辑 gcp-oauth.keys.json 并添加您的 OAuth 客户端 ID ```
- 身份验证(可选):
``bash npm run auth ``
Claude Desktop 配置
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": ["@piotr-agier/google-drive-mcp"]
}
}
}