package.json•1.5 kB
{
"name": "@tranzact/tempo-filler-mcp-server",
"version": "1.0.1",
"description": "Model Context Protocol (MCP) server for Tempo worklog management in JIRA - enables AI assistants to create, retrieve, and manage time entries",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:unix": "tsc && chmod +x dist/index.js",
"dev": "tsc && node dist/index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TRANZACT/tempo-filler-mcp-server.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"tempo",
"jira",
"worklog",
"time-tracking",
"ai",
"assistant",
"claude",
"copilot",
"automation"
],
"author": "JuanjoFuchs <juanjose.fuchs@tranzact.com>",
"license": "ISC",
"type": "module",
"bin": {
"tempo-filler-mcp-server": "dist/index.js"
},
"bugs": {
"url": "https://github.com/TRANZACT/tempo-filler-mcp-server/issues"
},
"homepage": "https://github.com/TRANZACT/tempo-filler-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"axios": "^1.6.0",
"date-fns": "^3.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.1.0",
"typescript": "^5.9.2"
}
}