
- Modified handleUpdatePullRequest to include existing reviewers when reviewers parameter is omitted - Preserves approval status for existing reviewers when updating reviewer list - Updated tool documentation to clarify reviewer preservation behavior - Enhanced README with detailed explanation of reviewer handling - Bumped version to 0.9.1 This prevents accidentally removing reviewers when only updating PR title or description.
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "@nexus2520/bitbucket-mcp-server",
|
|
"version": "0.9.1",
|
|
"description": "MCP server for Bitbucket API integration - supports both Cloud and Server",
|
|
"type": "module",
|
|
"main": "./build/index.js",
|
|
"bin": {
|
|
"bitbucket-mcp-server": "./build/index.js"
|
|
},
|
|
"files": [
|
|
"build/**/*",
|
|
"README.md",
|
|
"LICENSE",
|
|
"CHANGELOG.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
|
|
"dev": "tsc --watch",
|
|
"start": "node build/index.js",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"bitbucket",
|
|
"api",
|
|
"model-context-protocol",
|
|
"bitbucket-server",
|
|
"bitbucket-cloud",
|
|
"pull-request",
|
|
"code-review"
|
|
],
|
|
"author": "Parth Dogra",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.pratiknarola.com/Pdogra/bitbucket-mcp-server"
|
|
},
|
|
"bugs": {
|
|
"url": "https://git.pratiknarola.com/Pdogra/bitbucket-mcp-server/issues"
|
|
},
|
|
"homepage": "https://git.pratiknarola.com/Pdogra/bitbucket-mcp-server#readme",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"axios": "^1.10.0",
|
|
"minimatch": "^9.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/minimatch": "^5.1.2",
|
|
"@types/node": "^22.15.29",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|