MCP Catalogs
Home

time vs MCP-Next.js

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

time
by modelcontextprotocol
MCP-Next.js
by sattarrasouli
Stars★ 85,748★ 0
30d uses
Score7730
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis month7 mo ago

time · Summary

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

MCP-Next.js · Summary

A Next.js MCP server with TypeScript that exposes multiple simple tools like dice rolling and greetings via JSON-RPC API.

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-Next.js · Use cases

  • Learning how to build MCP servers with Next.js
  • Testing MCP tool connectivity with various clients
  • Simple demonstration of MCP protocol implementation

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-Next.js · Install

# Clone the repository
git clone https://github.com/sattarrasouli/MCP-Next.js.git
cd MCP-Next.js

# Install dependencies
npm install

# Run the development server
npm run dev

The MCP API will be available at http://localhost:3000/api/mcp.

**Claude Desktop Configuration:** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-nextjs": {
      "command": "npm",
      "args": ["run", "dev"],
      "env": {
        "NODE_PATH": "."
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.