TimeCamp MCP Server 为 TimeCamp 集成提供了一系列实用工具,解决了时间记录和任务管理的问题,让用户能更便捷地进行时间管理和任务跟踪。
本 MCP 服务器提供了托管版本,可通过以下链接访问:https://my-mcp-server.timecamp-s-a.workers.dev
pnpm start
pnpm dlx wrangler@latest deploy
pnpm dlx wrangler@latest tail
npx mcp-remote http://localhost:8787/sse --header "Authorization: Bearer "
npx mcp-remote https://my-mcp-server.timecamp-s-a.workers.dev/sse --header "Authorization: Bearer "
pnpm dlx @modelcontextprotocol/inspector@latest
本 MCP 服务器为 TimeCamp 集成提供了以下工具:
Create Timecamp time entries based on these tasks I did.
I write tasks by putting -HH:MM, which is the end time for the task, so each time entry should take from end end time of previous entry.
Try to match timecamp task, so first you have to fetch my timecamp tasks.
Note should be single sentence in English with 3-12 words.
Ignore "[minutes:: ...]" as this is estimate.
- [x] -9:43 emails & org [completion:: 2025-06-21]
- [x] -12:10 #tech new version of reports [[(project) XYZ]] [completion:: 2025-06-21]
- [x] -12:58 (evening) Buy shoes + relax [completion:: 2025-06-21]
- [x] -14:30 relax [completion:: 2025-06-21]
- [x] -15:30 #tech Notifications still not working for one more person from our group [completion:: 2025-06-21]
- [x] -15:40 I don't remember [completion:: 2025-06-21]
- [x] -17:09 #tech Client - database connection problem [[(process) Technical support]] [minutes:: 15] [completion:: 2025-06-21]
- [x] -17:35 break [completion:: 2025-06-21]
- [x] -19:17 #tech Client [[(project) Client]] [[(process) Technical support]] [minutes:: 10] [completion:: 2025-06-21] - - [x] -19:21 (evening) Fill timesheet [completion:: 2025-06-21]
您可以使用 mcp-remote 代理从本地 MCP 客户端连接到远程 MCP 服务器。 要从 Claude Desktop 连接到您的 MCP 服务器,请按照 Anthropic 的快速入门指南操作,在 Claude Desktop 中,转到“设置”>“开发者”>“编辑配置”。 使用以下配置进行更新:
{
"mcpServers": {
"timecamp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://my-mcp-server.timecamp-s-a.workers.dev/sse", // 或者 http://localhost:8787/sse
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer "
}
},
"timecamp_url": { // 如果 MCP 客户端支持 URL
"url": "https://my-mcp-server.timecamp-s-a.workers.dev/sse",
"headers": {
"Authorization": "Bearer ...."
}
},
}
}
重启 Claude,您应该会看到这些工具可用。 如果您使用的是 MacOS 版 Claude Desktop 遇到“Server transport closed unexpectedly”问题,请参考 https://github.com/modelcontextprotocol/servers/issues/1748#issuecomment-2896004925。