Clockify MCP Server
This MCP Server integrates with AI Tools to manage your time entries in Clockify, so you can register your time entries just sending an prompt to LLM.
Using in Claude Desktop
Installing via Smithery
To install clockify-mcp-server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @https-eduardo/clockify-mcp-server --client claude
Installing Manually
First, install tsx globally
npm i -g tsx
Then insert the MCP server in claude_desktop_config
{
"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"
}
}
}
}
Recommend MCP Servers 💡
mcp-access-point
Turn a web server into an MCP server in one click without making any code changes.
sonarqube-mcp-server
Model Context Protocol (MCP) server for SonarQube
@mcphub/gateway
A gateway service that bridges stdio-based MCP implementations with HTTP/SSE-based MCP servers
sonarqube
A Model Context Protocol (MCP) server that integrates with SonarQube Server or Cloud to provide code quality and security analysis, including direct analysis of code snippets.
mcp-shell-server
A secure shell command execution server implementing the Model Context Protocol (MCP). This server allows remote execution of whitelisted shell commands with support for stdin input.
mcp-v8
MCP server that exposes a V8 JavaScript runtime as a tool for AI agents like Claude and Cursor. Supports persistent heap snapshots via S3 or local filesystem, and is ready for integration with modern AI development environments.