time vs interactive-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | interactive-mcp by ttommyth | |
|---|---|---|
| Stars | ★ 85,748 | ★ 345 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
interactive-mcp · Summary
interactive-mcp is a local, cross-platform MCP server that enables interactive communication between AI agents and users through prompts, notifications, and persistent chat sessions.
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
interactive-mcp · Use cases
- Interactive setup or configuration processes requiring user confirmation
- Gathering feedback during code generation or modification
- Clarifying instructions in pair programming scenarios
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"]
}
}
}interactive-mcp · Install
Installation
For Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"interactive": {
"command": "npx",
"args": ["-y", "interactive-mcp"]
}
}
}For VS Code, add this to your User Settings (JSON) file or .vscode/mcp.json:
{
"mcp": {
"servers": {
"interactive-mcp": {
"command": "npx",
"args": ["-y", "interactive-mcp"]
}
}
}
}