time vs mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | mcp-server by webflow | |
|---|---|---|
| Stars | ★ 85,748 | ★ 131 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 电商开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mcp-server · 概述
Webflow MCP 服务器通过模型上下文协议让 AI 代理能够与 Webflow API 交互。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mcp-server · 使用场景
- 分析博客文章并推荐 SEO 优化的内容主题
- 自动在相关内容之间添加内部链接
- 创建带有行动号召按钮的响应式设计元素,如主页英雄区域
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"]
}
}
}mcp-server · 安装
远程安装(推荐)
- 添加到 Claude Desktop 配置文件 (
claude_desktop_config.json):
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}- 或添加到 Cursor 配置文件 (
.cursor/mcp.json):
{
"mcpServers": {
"webflow": {
"url": "https://mcp.webflow.com/sse"
}
}
}- 在 Webflow Designer 中打开您的站点,并从应用面板启动 MCP Bridge App
本地安装
- 在您的工作区创建并发布 Webflow MCP Bridge App
- 获取您的 Webflow API 令牌
- 添加到客户端配置并设置环境变量:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}