Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Jira-Context-MCP
by
rahulthedevil
Verified
npm
GitHub
Customer Support
Developer Tools
Monitoring
TypeScript
MIT License
147
4
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
Jira-Context-MCP
.github
src
Dockerfile
.env.example
.eslintrc.js
.gitignore
LICENSE
package.json
README.md
smithery.yaml
tsconfig.json
{ "name": "jira-mcp", "version": "0.1.0", "description": "Model Context Protocol server for Jira integration", "main": "dist/index.js", "bin": { "jira-mcp": "./dist/cli.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc", "type-check": "tsc --noEmit", "start": "node dist/index.js", "start:cli": "cross-env NODE_ENV=cli node dist/index.js", "start:http": "node dist/index.js", "dev": "tsx watch src/index.ts", "dev:http": "tsx watch src/index.ts", "lint": "eslint . --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "inspect": "pnpx @modelcontextprotocol/inspector", "prepare": "npm run build && node -e \"if (process.platform !== 'win32') require('child_process').execSync('chmod +x ./dist/cli.js')\"" }, "engines": { "node": "20.17.0" }, "keywords": [ "jira", "mcp", "typescript" ], "author": "Rahul Dey", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.5.0", "axios": "^1.7.9", "cross-env": "^7.0.3", "dotenv": "^16.4.7", "express": "^4.21.2", "remeda": "^2.20.1", "zod": "^3.24.2" }, "devDependencies": { "@types/express": "^5.0.0", "@types/jest": "^29.5.11", "@types/node": "^20.17.0", "@typescript-eslint/eslint-plugin": "^8.24.0", "@typescript-eslint/parser": "^8.24.0", "eslint": "^9.20.1", "eslint-config-prettier": "^10.0.1", "jest": "^29.7.0", "prettier": "^3.5.0", "ts-jest": "^29.2.5", "tsx": "^4.19.2", "typescript": "^5.7.3" } }