cli / mcp for bitbucket
1{
2 "name": "bitbucket-tool-mcp",
3 "version": "0.1.0",
4 "description": "MCP server for Bitbucket Cloud — pull requests, pipelines, branches, and code review",
5 "license": "MIT",
6 "keywords": ["mcp", "bitbucket", "model-context-protocol", "pull-requests", "code-review"],
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/riotbyte-com/bitbucket-tool.git",
10 "directory": "packages/mcp-server"
11 },
12 "main": "dist/index.js",
13 "bin": {
14 "bitbucket-tool-mcp": "./dist/index.js"
15 },
16 "mcpName": "io.github.riotbyte-com/bitbucket",
17 "files": ["dist"],
18 "scripts": {
19 "build": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js --external:@modelcontextprotocol/sdk",
20 "typecheck": "tsc --noEmit",
21 "test": "vitest run"
22 },
23 "dependencies": {
24 "@modelcontextprotocol/sdk": "^1.12.1"
25 },
26 "devDependencies": {
27 "vitest": "^4.0.18"
28 }
29}