time vs mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-server by webflow | |
|---|---|---|
| Stars | ★ 85,748 | ★ 131 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | E-commerceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server · Summary
Webflow MCP server enables AI agents to interact with Webflow APIs through Model Context Protocol.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
mcp-server · Use cases
- Analyze blog posts and suggest SEO-optimized content topics
- Automatically add internal links between related content
- Create responsive design elements like hero sections with CTAs
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}mcp-server · Install
Remote Installation (Recommended)
- Add to Claude Desktop config (
claude_desktop_config.json):
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}- Or add to Cursor config (
.cursor/mcp.json):
{
"mcpServers": {
"webflow": {
"url": "https://mcp.webflow.com/sse"
}
}
}- Open your site in Webflow Designer and launch the MCP Bridge App from the Apps panel
Local Installation
- Create and publish a Webflow MCP Bridge App in your workspace
- Get your Webflow API token
- Add to client config with environment variable:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}