MCP Catalogs
Home

ollama-mcp-example vs time

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

ollama-mcp-example
by kirillsaidov
time
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score3777
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last commit8 mo agothis month

ollama-mcp-example · Summary

A beginner-friendly example demonstrating MCP server and client implementation with Ollama.

time · Summary

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

ollama-mcp-example · Use cases

  • Learning MCP implementation from scratch
  • Understanding how MCP servers and clients interact
  • Creating reusable, model-agnostic tools for LLM applications

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

ollama-mcp-example · Install

Installation

  1. Clone the repository:
git clone https://github.com/kirillsaidov/ollama-mcp-example.git
cd ollama-mcp-example
  1. Create a virtual environment and install dependencies:
python3 -m venv venv
./venv/bin/pip install -r requirements.txt
  1. Run the server and client:
# Start MCP server
./venv/bin/python mcp_server.py

# Run MCP client
./venv/bin/python mcp_client.py

For Claude Desktop integration, add this to your config.json:

{
  "mcpServers": {
    "ollama-mcp": {
      "command": "python",
      "args": ["mcp_server.py"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}

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.