package.json•1.49 kB
{
"name": "@phuc-nt/mcp-atlassian-server",
"version": "2.1.1",
"description": "MCP Server for interacting with Atlassian Jira and Confluence",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE",
"assets"
],
"bin": {
"mcp-atlassian-server": "dist/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node --esm src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model",
"context",
"protocol",
"atlassian",
"jira",
"confluence"
],
"author": "Phuc Nguyen",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.6.2",
"axios-retry": "^4.5.0",
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.1",
"jira.js": "^3.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.13",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phuc-nt/mcp-atlassian-server.git"
},
"homepage": "https://github.com/phuc-nt/mcp-atlassian-server#readme",
"bugs": {
"url": "https://github.com/phuc-nt/mcp-atlassian-server/issues"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}