MCP Catalogs
Home

x-mcp vs time

Side-by-side comparison to help you pick between these two MCP servers.

x-mcp
by CS-Tao
time
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3377
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsCommunication
LanguageTypeScriptTypeScript
Last commit6 mo agothis month

x-mcp · Summary

A TypeScript-based MCP framework with middleware and mod architecture for extending functionality.

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

x-mcp · Use cases

  • Building complex MCP servers with modular architecture
  • Creating reusable middleware components for cross-cutting concerns
  • Developing MCP features as installable packages

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

x-mcp · Install

# Installation
npm i ext-mcp

# Basic usage
import path from "path";
import XMCP from "ext-mcp";

const app = new XMCP({
  name: "my-mcp",
  version: "0.0.1"
});

# Add middleware
app.use(path.join(__dirname, "./middlewares/logger"));
app.use(errorHandler);

# Install mods
app.installMod(path.join(__dirname, "./mods/say-hello"));
app.installMod(sayGoodbye);

# Start the service
app.start();

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "ext-mcp": {
      "command": "node",
      "args": ["path/to/your/script.js"]
    }
  }
}

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.