productivity
Clockify MCP, CLI, and Lua Integration for AI Agents
Clockify integration docs for AI agents: MCP gateway setup, Clockify CLI commands, Lua API reference, credentials, and function schemas.Clockify for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
clockify.clockify_list_workspaces | Read read | 0 | List all Clockify workspaces the authenticated user belongs to. Returns workspace IDs and names needed for other Clockify tools. |
clockify.clockify_get_workspace | Read read | 1 | Get details for a single Clockify workspace by ID. |
clockify.clockify_list_projects | Read read | 4 | List projects in a Clockify workspace. Optionally filter by name and paginate results. |
clockify.clockify_get_project | Read read | 2 | Get details for a single Clockify project by ID. |
clockify.clockify_create_project | Write write | 4 | Create a new project in a Clockify workspace. |
clockify.clockify_list_time_entries | Read read | 6 | List time entries in a Clockify workspace. Optionally filter by date range or project. |
clockify.clockify_get_time_entry | Read read | 2 | Get details for a single Clockify time entry by ID. |
clockify.clockify_create_time_entry | Write write | 5 | Create a new time entry in a Clockify workspace. Provide start/end times, a description, and optionally a project. |
clockify.clockify_update_time_entry | Write write | 6 | Update an existing Clockify time entry. Provide the fields you want to change. |
clockify.clockify_delete_time_entry | Write write | 2 | Delete a Clockify time entry. This action cannot be undone. |
clockify.clockify_list_tasks | Read read | 4 | List tasks for a Clockify project. |
clockify.clockify_get_current_user | Read read | 0 | Get the authenticated Clockify user profile. Use this to verify your API key is working. |