activitywatch-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
activitywatch-mcp-server by 8bitgentleman | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 65 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具AI / LLM 工具可观测性 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
activitywatch-mcp-server · 概述
ActivityWatch 时间追踪数据的 MCP 服务器,让 LLM 能够查询并与之交互。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
activitywatch-mcp-server · 使用场景
- 生产力分析:查询时间追踪数据,了解在不同应用程序和活动中花费的时间
- 个人洞察:通过 AI 界面提出关于时间使用模式的问题,获取详细的 ActivityWatch 报告
- 自动化报告:通过 MCP 运行复杂 AQL 查询,提取特定的时间追踪指标创建自定义报告
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
activitywatch-mcp-server · 安装
安装
**从 npm 安装(即将推出):**
npm install -g activitywatch-mcp-server**从源码构建:**
- 克隆仓库
npm installnpm run build
配置
在 Claude Desktop 配置文件中添加:
{
"mcpServers": {
"activitywatch": {
"command": "activitywatch-mcp-server",
"args": []
}
}
}如果从源码构建:
{
"mcpServers": {
"activitywatch": {
"command": "node",
"args": ["/path/to/activitywatch-mcp-server/dist/index.js"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything