MCP Catalogs
Home

todo-mcp-server vs time

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

todo-mcp-server
by idsulik
time
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score3277
Official
Categories
ProductivityDeveloper ToolsOther
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last commit13 mo agothis month

todo-mcp-server · Summary

A minimal Todo MCP server providing basic task management operations through Model Context Protocol.

time · Summary

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

todo-mcp-server · Use cases

  • Personal task management within AI assistants
  • Demonstration of MCP server implementation patterns
  • Integration with AI workflows for todo tracking

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

todo-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/idsulik/todo-mcp-server.git
cd todo-mcp-server
  1. Install dependencies using uv:
uv pip install -e .

Adding to Claude Desktop

Add this to your Claude Desktop configuration file:

{
  "mcpServers": {
    "todo": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "mcp",
        "run",
        "/path/to/your/server.py"
      ]
    }
  }
}

Using Docker

Alternatively, you can use Docker:

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

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.