clockify-mcp-server
Provides tools for interacting with Clockify's API, enabling time tracking operations such as managing workspaces, projects, clients, tags, and time entries.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@clockify-mcp-serverStart a timer for 'Design review meeting' with tag 'meetings'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@ivanherula/clockify-mcp-server
An MCP (Model Context Protocol) server for Clockify time tracking. Exposes Clockify functionality as tools that Claude and other MCP-compatible LLM clients can invoke.
Installation
npx @ivanherula/clockify-mcp-serverOr install globally:
npm install -g @ivanherula/clockify-mcp-server
clockify-mcp-serverRelated MCP server: Clockify MCP Server
Environment Variables
Variable | Required | Description |
| Yes | Your Clockify API key (found in Profile Settings → API) |
| No | Override workspace ID. If omitted, the first workspace is used automatically. |
Configuration
Claude Desktop (claude_desktop_config.json)
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"clockify": {
"command": "npx",
"args": ["-y", "@ivanherula/clockify-mcp-server@latest"],
"env": {
"CLOCKIFY_API_KEY": "your_api_key_here"
}
}
}
}Claude Code (claude.json)
{
"mcpServers": {
"clockify": {
"type": "stdio",
"command": "npx",
"args": [
"@ivanherula/clockify-mcp-server@latest"
],
"env": {
"CLOCKIFY_API_KEY": "your_api_key_here"
}
}
}
}Local development / testing
{
"mcpServers": {
"clockify": {
"command": "node",
"args": ["/path/to/clockify-mcp-server/build/index.js"],
"env": {
"CLOCKIFY_API_KEY": "your_api_key_here"
}
}
}
}Available Tools
Tool | Description |
| List all workspaces |
| Get authenticated user info |
| List projects (filter by name, archived; paginated) |
| List clients (filter by name, archived; paginated) |
| List tags (filter by name, archived; paginated) |
| List time entries with optional date range filter |
| Get the currently running timer (null if none) |
| Create a time entry; omit |
| Stop the running timer with an end time |
| Full replace of a time entry (requires |
| Delete a time entry by ID |
Testing with MCP Inspector
CLOCKIFY_API_KEY=your_key npx @modelcontextprotocol/inspector node build/index.jsOpens at http://localhost:5173 where you can interactively test all tools.
License
MIT
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ivanherula/clockify-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server