time vs tauri-plugin-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | tauri-plugin-mcp by P3GLEG | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 开发者工具浏览器自动化效率工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
tauri-plugin-mcp · 概述
Tauri插件使AI代理能够通过截图、DOM访问和输入模拟来调试应用程序。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
tauri-plugin-mcp · 使用场景
- AI 代理对 Tauri 应用程序进行自动化 UI 测试和调试
- 桌面应用程序中的视觉回归测试和自动化错误报告
- 跨平台桌面应用程序的 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"]
}
}
}tauri-plugin-mcp · 安装
安装
- **安装 Tauri 插件**:
npm install tauri-plugin-mcp- **在您的 Tauri 应用程序中注册插件**:
#[cfg(debug_assertions)]
{
builder = builder.plugin(tauri_plugin_mcp::init_with_config(
tauri_plugin_mcp::PluginConfig::new("APPLICATION_NAME".to_string())
.start_socket_server(true)
.socket_path("/tmp/tauri-mcp.sock")
));
}- **配置您的 AI 代理**(例如,Claude Desktop):
{
"mcpServers": {
"tauri-mcp": {
"command": "npx",
"args": ["tauri-plugin-mcp-server"]
}
}
}