返回市场
Clockify-MCP-服务器

Clockify-MCP-服务器

作者:https-eduardo8 星标更新:2025-07-13

项目介绍

Clockify MCP Server

smithery 徽章

此MCP服务器与AI工具集成,用于管理Clockify中的时间条目,因此您只需发送一个提示到LLM即可注册时间条目。

下一步实现

  • 实现条目的标签

在Claude Desktop中使用

通过Smithery安装

要通过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"
      }
    }
  }
}