MCP Catalogs
Home

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
Score5377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last commit1 mo agothis 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-sdk

For new projects, scaffold with:

concierge init my-project
cd my-project
python main.py

To 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.