activitywatch-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
activitywatch-mcp-server by 8bitgentleman | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 65 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 46 | 84 |
| Official | — | — |
| Categories | ProductivityAI / LLM ToolsMonitoring | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
activitywatch-mcp-server · Summary
MCP server for ActivityWatch time tracking data, allowing LLMs to query and interact with time tracking information.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
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
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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"]
}
}
}mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}