MCP Catalogs
Home

everything vs mcp-time

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

everything
by modelcontextprotocol
mcp-time
by TheoBrigitte
Stars★ 85,748★ 15
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsProductivityAI / LLM Tools
LanguageTypeScriptGo
Last committhis month2 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-time · Summary

A Go-based MCP server providing time utilities with natural language processing and timezone conversions.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-time · Use cases

  • AI assistants answering time-related questions across different timezones
  • Automated scheduling systems needing precise time calculations and conversions
  • Data analysis pipelines requiring standardized time formatting and comparisons

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

mcp-time · Install

Installation

Using npm/npx

{
  "mcpServers": {
    "mcp-time": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@theo.foobar/mcp-time"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "mcp-time": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "theo01/mcp-time:latest"
      ]
    }
  }
}

Using binary

Download the binary for your platform from [releases](https://github.com/TheoBrigitte/mcp-time/releases) and add to your PATH.

Comparison generated from public README + GitHub signals. Last updated automatically.