productivity
Clockify MCP Gateway for AI Agents
Expose Clockify tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
12 functions 8 read 4 write API key auth
Clockify MCP Gateway
Expose Clockify to MCP clients with `kosmokrator mcp:serve --integration=clockify`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=clockify --write=deny --json {
"mcpServers": {
"kosmokrator-clockify": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=clockify",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=clockify --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
MCP Tool Names (12 tools)
| MCP tool | Source function | Type |
|---|---|---|
integration__clockify__clockify_list_workspaces | clockify.clockify_list_workspaces | Read read |
integration__clockify__clockify_get_workspace | clockify.clockify_get_workspace | Read read |
integration__clockify__clockify_list_projects | clockify.clockify_list_projects | Read read |
integration__clockify__clockify_get_project | clockify.clockify_get_project | Read read |
integration__clockify__clockify_create_project | clockify.clockify_create_project | Write write |
integration__clockify__clockify_list_time_entries | clockify.clockify_list_time_entries | Read read |
integration__clockify__clockify_get_time_entry | clockify.clockify_get_time_entry | Read read |
integration__clockify__clockify_create_time_entry | clockify.clockify_create_time_entry | Write write |
integration__clockify__clockify_update_time_entry | clockify.clockify_update_time_entry | Write write |
integration__clockify__clockify_delete_time_entry | clockify.clockify_delete_time_entry | Write write |
integration__clockify__clockify_list_tasks | clockify.clockify_list_tasks | Read read |
integration__clockify__clockify_get_current_user | clockify.clockify_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.