Skip to content

Releases: aashari/mcp-server-atlassian-confluence

v3.3.0

03 Dec 06:43

Choose a tag to compare

3.3.0 (2025-12-03)

Features

  • add raw response logging with truncation for large API responses (cb06cb8)

v3.2.1

01 Dec 04:53

Choose a tag to compare

3.2.1 (2025-12-01)

Bug Fixes

  • deps: regenerate package-lock.json for CI compatibility (0a826be)

v3.2.0

01 Dec 04:23

Choose a tag to compare

3.2.0 (2025-12-01)

Features

  • modernize MCP SDK to v1.23.0 with registerTool API (021c09f)

v3.1.0

30 Nov 19:16

Choose a tag to compare

3.1.0 (2025-11-30)

Features

  • add TOON output format for token-efficient LLM responses (#145) (33ffa7b)

v3.0.0

28 Nov 08:13

Choose a tag to compare

3.0.0 (2025-11-28)

  • refactor!: replace domain-specific tools with generic HTTP method tools (81fc057)

BREAKING CHANGES

  • This replaces 8+ domain-specific tools with 5 generic HTTP method tools.

Before (v2.x):
conf_ls_spaces, conf_get_space, conf_ls_pages, conf_get_page,
conf_search, conf_ls_comments, conf_add_comment, ...

After (v3.0):
conf_get, conf_post, conf_put, conf_patch, conf_delete

Migration examples:

  • conf_ls_spaces -> conf_get with path /wiki/api/v2/spaces
  • conf_get_page -> conf_get with path /wiki/api/v2/pages/{id}
  • conf_search -> conf_get with path /wiki/rest/api/search?cql=...
  • conf_add_comment -> conf_post with path /wiki/api/v2/pages/{id}/footer-comments

New features:

  • Full Confluence API access via generic HTTP methods
  • JMESPath filtering support for response transformation
  • Consistent with Bitbucket v2.0 and Jira v3.0 patterns
  • PATCH method support for partial updates
  • Proper handling of 204 No Content responses

Removed:

  • 8 domain-specific tools and their types
  • 5 controllers with formatters
  • 12 service files with vendor types
  • 7 utility files (ADF, markdown, pagination, etc.)
  • CLI tests for old commands

Added:

  • src/tools/atlassian.api.tool.ts (5 generic tools)
  • src/tools/atlassian.api.types.ts (Zod schemas)
  • src/controllers/atlassian.api.controller.ts
  • src/cli/atlassian.api.cli.ts
  • src/utils/jq.util.ts (JMESPath wrapper)

v2.1.1

09 Sep 06:47

Choose a tag to compare

2.1.1 (2025-09-09)

Bug Fixes

  • prevent dotenv from outputting to STDIO in MCP mode (#82) (a286143)

v2.1.0

09 Sep 05:58

Choose a tag to compare

2.1.0 (2025-09-09)

Features

  • modernize dependencies and ensure Zod v3.25.76 MCP SDK compatibility (#80) (9eb21f0)

v2.0.2

07 Aug 09:18

Choose a tag to compare

2.0.2 (2025-08-07)

Bug Fixes

  • improve .env.example with detailed comments (aecadb2)

v2.0.1

07 Aug 09:16

Choose a tag to compare

2.0.1 (2025-08-07)

Bug Fixes

  • add alternative config key documentation (9d636b5)

v2.0.0

02 Aug 08:29

Choose a tag to compare

2.0.0 (2025-08-02)

Features

  • implement smart title search and inline comments separation (4dfc95c)

BREAKING CHANGES

  • Title search behavior now includes automatic partial matching fallback