Skip to content

Release history

aashari/mcp-server-atlassian-bitbucket releases

Atlassian Bitbucket Cloud integration. Enables AI systems to interact with repositories, pull requests, workspaces, and code in real time.

All releases

23 shown

v3.1.0 New feature
Notable features
  • Modernized HTTP transport
  • Hardened security measures
  • Standardized tool contracts
Full changelog

3.1.0 (2026-02-17)

Features

  • modernize HTTP transport, harden security, and standardize tool contracts (a44bf76)
v3.0.0 Breaking risk
Breaking changes
  • Publishing workflow now requires OpenID Connect (OIDC) authentication; GitHub Actions workflow permissions must include id-token: write.
Full changelog

3.0.0 (2026-02-04)

Features

  • migrate to npm OIDC trusted publishing and modernize dependencies (96475dd)

BREAKING CHANGES

  • Publishing workflow now requires OpenID Connect (OIDC) authentication. GitHub Actions workflow permissions updated to include id-token: write for secure npm authentication.

Dependencies updated: @modelcontextprotocol/sdk 1.23.0 → 1.25.3, zod 4.1.13 → 4.3.6, express 5.1.0 → 5.2.1, commander 14.0.2 → 14.0.3, @toon-format/toon 2.0.1 → 2.1.0

For configuration details, see docs/OIDC-TRUSTED-PUBLISHING-SETUP.md

v2.3.0 New feature
Notable features
  • Add raw response logging with truncation for large API responses
Full changelog

2.3.0 (2025-12-03)

Features

  • add raw response logging with truncation for large API responses (d13205f)
v2.2.0 New feature
Notable features
  • Modernized MCP SDK to version 1.23.0 with the new registerTool API
Full changelog

2.2.0 (2025-12-01)

Features

  • modernize MCP SDK to v1.23.0 with registerTool API (48234ac)
v2.1.0 New feature
Notable features
  • Added TOON output format for token‑efficient LLM responses
Full changelog

2.1.0 (2025-11-30)

Features

  • add TOON output format for token-efficient LLM responses (#187) (b36eb00)
v2.0.0 Breaking risk
⚠ Upgrade required
  • Migration required: replace calls to removed specific tools with the corresponding generic tool (e.g., `bb_ls_prs` → `bb_get` with path "/repositories/{workspace}/{repo}/pullrequests").
  • Generic tools provide raw JSON output and optional JMESPath filtering, reducing token consumption by ~14,000 lines of code.
Breaking changes
  • Removal of all specific Bitbucket tools (bb_ls_workspaces, bb_get_workspace, bb_ls_repos, etc.) and replacement with generic HTTP method tools: bb_get, bb_post, bb_put, bb_patch, bb_delete, bb_clone.
Full changelog

2.0.0 (2025-11-28)

  • feat!: replace 20+ specific tools with 6 generic HTTP method tools (d269cdb)

BREAKING CHANGES

  • This release removes all specific Bitbucket tools and replaces them with generic HTTP method tools.

Removed tools:

  • bb_ls_workspaces, bb_get_workspace
  • bb_ls_repos, bb_get_repo
  • bb_list_branches, bb_add_branch
  • bb_get_commit_history, bb_get_file
  • bb_ls_prs, bb_get_pr, bb_add_pr, bb_update_pr
  • bb_approve_pr, bb_reject_pr
  • bb_ls_pr_comments, bb_add_pr_comment
  • bb_diff_branches, bb_diff_commits
  • bb_search

New tools:

  • bb_get: GET any Bitbucket API endpoint
  • bb_post: POST to any endpoint (create resources)
  • bb_put: PUT to any endpoint (replace resources)
  • bb_patch: PATCH any endpoint (partial updates)
  • bb_delete: DELETE any endpoint
  • bb_clone: Clone repository locally (unchanged)

Migration: Replace specific tool calls with generic bb_get/bb_post calls.
Example: bb_ls_prs -> bb_get with path "/repositories/{workspace}/{repo}/pullrequests"

Benefits:

  • 6 tools vs 20+ (lower token consumption)
  • Raw JSON output with optional JMESPath filtering
  • Future-proof: new API endpoints work without code changes
  • ~14,000 fewer lines of code
v1.45.0 New feature
Notable features
  • API call timeout implementation (addresses CWE-400)
Full changelog

1.45.0 (2025-10-05)

Features

v1.44.2 Bug fix

Fixed API token authentication to use a single baseUrl.

Full changelog

1.44.2 (2025-09-09)

Bug Fixes

  • use single baseUrl for API token authentication (#117) (a0d5ad1), closes #61
v1.44.1 Bug fix

Fixed dotenv from writing to STDOUT/STDERR in MCP mode.

Full changelog

1.44.1 (2025-09-09)

Bug Fixes

  • Prevent dotenv from outputting to STDIO in MCP mode (#106) (52a8e13)
v1.44.0 Maintenance

Minor fixes and improvements.

Full changelog

1.44.0 (2025-09-09)

Features

  • modernize dependencies and ensure Zod v3.25.76 MCP SDK compatibility (#115) (86ceaeb)
v1.43.4 Maintenance

Minor fixes and improvements.

Full changelog

1.43.4 (2025-08-07)

Bug Fixes

  • update .env.example with complete authentication options (52da9a1)
v1.43.3 Bug fix

Fixed incorrect authentication credentials and configuration structure.

Full changelog

1.43.3 (2025-08-07)

Bug Fixes

  • correct authentication credentials and config structure (b53b5d5)
v1.43.2 Bug fix

Fixed double formatting issue in Bitbucket markdown where headings and bold were applied twice.

Full changelog

1.43.2 (2025-08-02)

Bug Fixes

  • prevent double formatting in Bitbucket markdown (heading + bold) (67ec325)
v1.43.1 Bug fix

Fixed bb_get_file tool failures when using dynamic default branch detection.

Full changelog

1.43.1 (2025-08-02)

Bug Fixes

  • resolve bb_get_file tool failure with dynamic default branch detection (74ca7e0)
v1.43.0 New feature
Notable features
  • Query logging added for repository searches
Full changelog

1.43.0 (2025-08-02)

Bug Fixes

  • correct logger variable name in repository list controller (1706725)

Features

  • add query logging for repository searches (c8d776d)
v1.42.1 Maintenance

Minor fixes and improvements.

Full changelog

1.42.1 (2025-08-02)

Bug Fixes

  • standardize dependencies and fix TypeScript linting issues (4e5ab79)
v1.42.0 New feature
Notable features
  • Support for threaded comments in pull request comments
Full changelog

1.42.0 (2025-07-15)

Features

  • add support for threaded comments in pull request comments (#50) (6bcb98a), closes #49
v1.41.1 Bug fix

Changed the default transport from HTTP to STDIO for MCP client integration.

Full changelog

1.41.1 (2025-06-22)

Bug Fixes

  • change default transport from HTTP to STDIO for proper MCP client integration (51d9a1c)
v1.41.0 New feature
Notable features
  • Full support for PR update, approve, and reject operations
Full changelog

1.41.0 (2025-06-22)

Features

  • implement complete PR CRUD operations (update, approve, reject) (de5a2a0), closes #38 #39 #38 #39
v1.40.0 New feature
Notable features
  • Added dual transport support (HTTP + STDIO) for the MCP server
Full changelog

1.40.0 (2025-06-22)

Features

  • add dual transport support (HTTP + STDIO) for MCP server (313de85)
v1.39.7 Bug fix

Fixed cross‑platform executable permission handling by replacing Unix‑specific chmod.

Full changelog

1.39.7 (2025-06-02)

Bug Fixes

  • replace Unix-specific chmod with cross-platform ensure-executable script (0140fb5), closes #31

Beta — feedback welcome: [email protected]