MCP Catalogs
Home

activitywatch-mcp-server vs ultimate_mcp_server

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

activitywatch-mcp-server
by 8bitgentleman
ultimate_mcp_server
by Dicklesworthstone
Stars★ 65★ 149
30d uses
Score4685
Official
Categories
ProductivityAI / LLM ToolsMonitoring
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit1 mo ago2 mo ago

activitywatch-mcp-server · Summary

MCP server for ActivityWatch time tracking data, allowing LLMs to query and interact with time tracking information.

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

activitywatch-mcp-server · Use cases

  • Productivity analysis: Query time tracking data to understand how time is spent across different applications and activities
  • Personal insights: Ask questions about time usage patterns and get detailed reports from ActivityWatch through an AI interface
  • Automated reporting: Create custom reports by running complex AQL queries through MCP to extract specific time tracking metrics

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

activitywatch-mcp-server · Install

Installation

**From npm (coming soon):**

npm install -g activitywatch-mcp-server

**Building from source:**

  1. Clone the repository
  2. npm install
  3. npm run build

Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "activitywatch": {
      "command": "activitywatch-mcp-server",
      "args": []
    }
  }
}

If built from source:

{
  "mcpServers": {
    "activitywatch": {
      "command": "node",
      "args": ["/path/to/activitywatch-mcp-server/dist/index.js"]
    }
  }
}

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.