此 MCP 服务器与 AI 工具集成,可用于在 Clockify 中管理时间记录。您只需将提示发送到大型语言模型(LLM),就能轻松注册时间条目,极大提升时间管理效率。
要通过 Smithery 自动安装 Clockify MCP 服务器到 Claude Desktop,可执行以下命令:
npx -y @smithery/cli install @https-eduardo/clockify-mcp-server --client claude
ts-node
:npm i -g ts-node
claude_desktop_config
中:{
"mcpServers": {
"clockify-time-entries": {
"command": "ts-node",
"args": ["ABSOLUTE_PATH/src/index.ts"],
"env": {
"CLOCKIFY_API_URL": "https://api.clockify.me/api/v1",
"CLOCKIFY_API_TOKEN": "YOUR_CLOCKIFY_API_TOKEN_HERE"
}
}
}
}
此外,您也可以使用 tsc
编译 TypeScript 代码,然后更改配置以使用默认的 node
命令并指向生成的 .js
文件。