UNPKG

@ivelin-web/tempo-mcp-server

Version:

MCP server for managing Tempo worklogs in Jira

76 lines (75 loc) 1.84 kB
{ "name": "@ivelin-web/tempo-mcp-server", "version": "1.2.1", "description": "MCP server for managing Tempo worklogs in Jira", "main": "build/index.js", "type": "module", "bin": { "tempo-mcp-server": "./build/index.js" }, "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "start": "node build/index.js", "dev": "tsx watch src/index.ts", "inspect": "npx @modelcontextprotocol/inspector tsx src/index.ts", "prepare": "npm run build && husky", "lint": "eslint", "format": "prettier . --write", "format:check": "prettier . --check" }, "files": [ "build", "README.md", "LICENSE" ], "keywords": [ "mcp", "tempo", "jira", "worklogs", "time-tracking", "claude", "cursor", "windsurf", "cline", "ai" ], "author": "Ivelin Ivanov <ivelinivanov1999@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/ivelin-web/tempo-mcp-server.git" }, "bugs": { "url": "https://github.com/ivelin-web/tempo-mcp-server/issues" }, "homepage": "https://github.com/ivelin-web/tempo-mcp-server#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "axios": "^1.6.7", "zod": "^3.24.2" }, "devDependencies": { "@eslint/js": "^9.28.0", "@types/node": "^20.11.0", "eslint": "^9.28.0", "eslint-config-prettier": "^10.1.5", "globals": "^16.2.0", "husky": "^9.1.7", "lint-staged": "^16.1.0", "prettier": "3.5.3", "tsx": "^4.7.0", "typescript": "^5.8.3", "typescript-eslint": "^8.34.0" }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" }, "lint-staged": { "*.{js,ts}": "eslint --cache --fix --quiet", "*": "prettier . --write" } }