-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@themkn/clockify-mcp",
"version": "1.0.2",
"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.",
"repository": {
"type": "git",
"url": "git+https://github.com/themkn/clockify-mcp.git"
},
"homepage": "https://github.com/themkn/clockify-mcp#readme",
"bugs": {
"url": "https://github.com/themkn/clockify-mcp/issues"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"clockify",
"time-tracking",
"timetracking",
"claude",
"claude-code",
"timer",
"time-entries"
],
"license": "MIT",
"type": "module",
"bin": {
"clockify-mcp": "dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"README.md",
"SECURITY.md",
"LICENSE",
"config.example.json"
],
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"audit": "npm audit --audit-level=high"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^26.1.1",
"typescript": "^7.0.2",
"vitest": "^4.1.4"
}
}