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 | — | — |
| Score | 46 | 85 |
| Official | — | — |
| Categories | ProductivityAI / LLM ToolsMonitoring | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 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:**
- Clone the repository
npm installnpm 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server