package.json•1.46 kB
{
"name": "@ratheesh-aot/clockify-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for Clockify time tracking integration. Enables Claude AI to directly manage time entries, projects, tasks, and generate reports through Clockify's API.",
"main": "dist/index.js",
"type": "module",
"bin": {
"clockify-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"keywords": [
"mcp",
"model-context-protocol",
"clockify",
"time-tracking",
"productivity",
"automation",
"claude",
"ai-tools",
"timesheet",
"project-management",
"api-integration"
],
"author": "Ratheesh Kumar <ratheeshspiral09@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ratheesh-aot/clockify-mcp.git"
},
"bugs": {
"url": "https://github.com/ratheesh-aot/clockify-mcp/issues"
},
"homepage": "https://github.com/ratheesh-aot/clockify-mcp#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
}
}