Skip to main content
Glama

Clockify MCP Server

A Model Context Protocol (MCP) server for Clockify that allows interaction with Clockify's time tracking entities through a standardized protocol.

Features

  • Full CRUD Support: Comprehensive Create, Read, Update, and Delete operations for all core Clockify entities.

  • Access to Clockify entities:

    • Workspaces

    • Projects

    • Tasks

    • Clients

    • Tags

    • Users

    • Time Entries

    • Reports

  • Time Tracking: Start/stop timers, log time manually, and manage time entries.

  • Full MCP Support: Standardized protocol for use with any MCP client (Claude Desktop, Cursor, Windsurf, etc.).

Related MCP server: @lewinnovation/clockify-mcp-server

🚀 Quick Start (Hosted)

The fastest way to use Clockify MCP is through our hosted instance at https://kyzu-clockify-mcp.fastmcp.app/mcp.

Add it to your favorite AI tools using these commands:

Codex CLI

codex mcp add --url https://kyzu-clockify-mcp.fastmcp.app/mcp kyzu-clockify

Claude CLI

claude mcp add --scope local --transport http kyzu-clockify https://kyzu-clockify-mcp.fastmcp.app/mcp

Gemini CLI

gemini mcp add kyzu-clockify https://kyzu-clockify-mcp.fastmcp.app/mcp --transport http

🛠️ Local Setup (Self-Hosted)

If you prefer to run the server locally for development or private use.

1. Prerequisites

2. Installation

git clone https://github.com/antuking/clockify-mcp.git
cd clockify-mcp
uv sync

3. Configuration

Create a .env file in the root directory:

CLOCKIFY_API_KEY=your-api-key
CLOCKIFY_WORKSPACE_ID=your-workspace-id  # optional

4. Running the Server

uv run clockify-mcp

5. Using with MCP Clients (Local)

Codex CLI

codex mcp add clockify_mcp \
  --env CLOCKIFY_API_KEY=<CLOCKIFY_API_KEY> \
  --env CLOCKIFY_WORKSPACE_ID=<CLOCKIFY_WORKSPACE_ID> \
  -- uv --directory <REPO_PATH> run clockify-mcp

Claude Desktop

{
  "mcpServers": {
    "clockify": {
      "command": "uv",
      "args": ["--directory", "<REPO_PATH>", "run", "clockify-mcp"],
      "env": {
        "CLOCKIFY_API_KEY": "your-api-key",
        "CLOCKIFY_WORKSPACE_ID": "your-workspace-id"
      }
    }
  }
}

Cursor / Windsurf

{
  "name": "Clockify MCP",
  "command": "uv",
  "args": ["--directory", "<REPO_PATH>", "run", "clockify-mcp"],
  "env": {
    "CLOCKIFY_API_KEY": "your-api-key",
    "CLOCKIFY_WORKSPACE_ID": "your-workspace-id"
  }
}

Gemini CLI

gemini mcp add clockify \
  --env CLOCKIFY_API_KEY=<CLOCKIFY_API_KEY> \
  --env CLOCKIFY_WORKSPACE_ID=<CLOCKIFY_WORKSPACE_ID> \
  -- uv --directory <REPO_PATH> run clockify-mcp

API Coverage

This server implements the following Clockify API endpoints:

Workspaces

  • get_workspaces - List all workspaces

  • get_workspace - Get workspace by ID

Projects

  • get_projects - List all projects in a workspace

  • get_project - Get project by ID

  • add_project - Create a new project

  • update_project - Update an existing project

  • delete_project - Delete a project

Tasks

  • get_tasks - List all tasks

  • get_task - Get task by ID

  • add_task - Create a new task

  • update_task - Update an existing task

  • delete_task - Delete a task

Clients

  • get_clients - List all clients

  • get_client - Get client by ID

  • add_client - Create a new client

  • update_client - Update an existing client

  • delete_client - Delete a client

Tags

  • get_tags - List all tags

  • get_tag - Get tag by ID

  • add_tag - Create a new tag

  • update_tag - Update an existing tag

  • delete_tag - Delete a tag

Users

  • get_current_user - Get the authenticated user

  • get_users - List all users in a workspace

  • get_user - Get user by ID

  • add_user - Add a user to a workspace

  • update_user - Update a user

  • delete_user - Remove a user from a workspace

Time Entries

  • get_time_entries - List time entries (with optional date range)

  • get_time_entry - Get time entry by ID

  • add_time_entry - Create a new time entry

  • update_time_entry - Update an existing time entry

  • delete_time_entry - Delete a time entry

  • get_time_entries_for_project - Get time entries for a project

Development

This server is built using:

Install Server
A
license - permissive license
B
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/antuking/clockify-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server