
- Added create_pull_request, update_pull_request, merge_pull_request tools - Added list_branches and delete_branch tools (fixed delete to handle 204 response) - Enhanced add_comment to support inline comments on specific code lines - Added all code review tools: approve/unapprove, request/remove changes, get diff - Updated package version to 0.2.0 - Comprehensive documentation for all tools in README
23 lines
592 B
JSON
23 lines
592 B
JSON
{
|
|
"name": "bitbucket-mcp-server",
|
|
"version": "0.2.0",
|
|
"description": "MCP server for Bitbucket API integration",
|
|
"type": "module",
|
|
"main": "./build/index.js",
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
|
|
"dev": "tsc --watch",
|
|
"start": "node build/index.js"
|
|
},
|
|
"keywords": ["mcp", "bitbucket", "api"],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"axios": "^1.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.29",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|