此MCP服务器与AI工具集成,用于管理Clockify中的时间条目,因此您只需发送一个提示到LLM即可注册时间条目。
要通过Smithery自动安装clockify-mcp-server到Claude Desktop:
npx -y @smithery/cli install @https-eduardo/clockify-mcp-server --client claude
首先,全局安装tsx
npm i -g tsx
然后在claude_desktop_config中插入MCP服务器
{
"mcpServers": {
"clockify-time-entries": {
"command": "tsx",
"args": ["ABSOLUTE_PATH/src/index.ts", "--local"],
"env": {
"CLOCKIFY_API_URL": "https://api.clockify.me/api/v1",
"CLOCKIFY_API_TOKEN": "YOUR_CLOCKIFY_API_TOKEN_HERE"
}
}
}
}