bitbucket-mcp-server/package.json
pdogra1299 749b0e9986 v1.0.1: fix: Improve search_code response formatting and testing
- Enhanced formatCodeSearchOutput for cleaner AI consumption
- Improved HTML entity decoding (", <, >, &, /, ')
- Simplified response structure with file:line:text format
- Removed HTML formatting tags for better readability
- Updated package.json to version 1.0.1
- Updated CHANGELOG.md with comprehensive v1.0.1 entry
- Updated memory bank files with testing results and patterns
- Enhanced .clinerules with v1.0.1 evolution notes
- Validated functionality with live MCP testing workflow
- Confirmed search patterns working with real Bitbucket data
- Removed currentTask.yml as no longer needed
2025-08-08 16:37:20 +05:30

55 lines
1.3 KiB
JSON

{
"name": "@nexus2520/bitbucket-mcp-server",
"version": "1.0.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"
}
}