concierge vs time
Side-by-side comparison to help you pick between these two MCP servers.
concierge by concierge-hq | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 534 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
concierge · Summary
Concierge is a Python SDK that enhances MCP servers with progressive tool disclosure, workflow state management, and semantic search capabilities.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
concierge · Use cases
- E-commerce platforms with multi-step purchasing workflows
- Complex API management with hundreds of endpoints
- Multi-agent systems requiring state persistence across interactions
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
concierge · Install
Install Concierge SDK using pip:
pip install concierge-sdkFor new projects, scaffold with:
concierge init my-project
cd my-project
python main.pyTo wrap an existing FastMCP server:
from concierge import Concierge
from mcp.server.fastmcp import FastMCP
app = Concierge(FastMCP("my-server"))For Claude Desktop integration, add to config.json:
{
"mcpServers": {
"concierge": {
"command": "python",
"args": ["-m", "concierge", "run"],
"env": {}
}
}
}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"]
}
}
}