@themkn/clockify-mcp 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -4
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
# clockify-mcp
|
|
1
|
+
# clockify-mcp — Clockify MCP Server for Claude Code
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@themkn/clockify-mcp)
|
|
4
|
+
|
|
5
|
+
An [MCP server](https://modelcontextprotocol.io) for
|
|
6
|
+
[Clockify](https://clockify.me) time tracking. Start and stop timers, manage
|
|
7
|
+
time entries, projects, tasks, tags, and clients — directly from
|
|
8
|
+
[Claude Code](https://docs.anthropic.com/en/docs/claude-code) or any MCP-compatible client.
|
|
6
9
|
|
|
7
10
|
## Install
|
|
8
11
|
|
|
@@ -51,6 +54,22 @@ or the per-project `.claude/mcp.json`):
|
|
|
51
54
|
}
|
|
52
55
|
```
|
|
53
56
|
|
|
57
|
+
### Auto-approve tools
|
|
58
|
+
|
|
59
|
+
By default Claude Code asks for permission on every Clockify tool call. To
|
|
60
|
+
allow all Clockify tools without prompting, add this to your
|
|
61
|
+
`~/.claude/settings.json`:
|
|
62
|
+
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
"permissions": {
|
|
66
|
+
"allow": [
|
|
67
|
+
"mcp__clockify__*"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
54
73
|
## Tools
|
|
55
74
|
|
|
56
75
|
Grouped by resource:
|
package/package.json
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themkn/clockify-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server for managing Clockify time entries, projects, tasks, tags, and clients.",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "MCP server for managing Clockify time tracking — start/stop timers, CRUD time entries, projects, tasks, tags, and clients via Claude Code or any MCP client.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"mcp-server",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"clockify",
|
|
10
|
+
"time-tracking",
|
|
11
|
+
"timetracking",
|
|
12
|
+
"claude",
|
|
13
|
+
"claude-code",
|
|
14
|
+
"timer",
|
|
15
|
+
"time-entries"
|
|
16
|
+
],
|
|
5
17
|
"license": "MIT",
|
|
6
18
|
"type": "module",
|
|
7
19
|
"bin": {
|