bitbucket-mcp-server/package.json
pdogra1299 d649a116fe feat(diff): add filtering capabilities to get_pull_request_diff
- Add include_patterns, exclude_patterns, and file_path parameters to get_pull_request_diff
- Implement a diff parser to filter the diff based on the provided patterns
- Add minimatch dependency for glob pattern matching
- Update documentation and changelog
2025-06-26 20:17:33 +05:30

55 lines
1.3 KiB
JSON

{
"name": "@nexus2520/bitbucket-mcp-server",
"version": "0.7.0",
"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.9.0",
"minimatch": "^9.0.3"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "^22.15.29",
"typescript": "^5.8.3"
}
}