@aot-tech/clockify-mcp-server
Version:
MCP Server for Clockify time tracking integration with AI tools
68 lines (65 loc) • 1.61 kB
JSON
{
"name": "@aot-tech/clockify-mcp-server",
"version": "1.1.0",
"description": "MCP Server for Clockify time tracking integration with AI tools",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"clockify-mcp-server": "./build/index.js"
},
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"clockify",
"time-tracking",
"ai-tools",
"claude",
"typescript",
"aot-tech"
],
"repository": {
"type": "git"
},
"files": [
"build/",
"README.md",
"smithery.yaml"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "cross-env PORT=3000 IS_LOCAL=true NODE_ENV=development TZ='UTC' nodemon --exec tsx ./src/index.ts",
"test": "node --test test/*.test.js",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.15.15",
"axios": "^1.8.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"nodemon": "^3.1.10",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.1",
"typescript": "^5.8.3",
"zod": "^3.24.2"
}
}