- Raw response logging with truncation for large API responses
Release history
aashari/mcp-server-atlassian-confluence releases
Atlassian Confluence Cloud integration. Enables AI systems to interact with Confluence spaces, pages, and content with automatic ADF to Markdown conversion.
All releases
17 shown
Minor fixes and improvements.
Full changelog
- Modernized MCP SDK to version v1.23.0 with the new registerTool API
Full changelog
- Added TOON output format for token‑efficient LLM responses
Full changelog
- Update scripts to use the new generic tools (conf_get, conf_post, etc.) as detailed in migration examples.
- Adjust any configurations or automation that referenced removed domain‑specific command names or types.
- Removed 8+ domain‑specific tools (conf_ls_spaces, conf_get_space, etc.) and replaced them with generic HTTP method tools: conf_get, conf_post, conf_put, conf_patch, conf_delete.
- Renamed all removed commands to the new generic equivalents; migration examples provided for each mapping.
- Full Confluence API access via generic HTTP methods (GET, POST, PUT, PATCH, DELETE).
- JMESPath filtering support for response transformation using jq.util.ts wrapper.
- Consistent tooling pattern with Bitbucket v2.0 and Jira v3.0 releases.
Full changelog
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)
Fixed dotenv from outputting to STDOUT in MCP mode.
Full changelog
- Modernized dependencies and ensured Zod v3.25.76 MCP SDK compatibility
Full changelog
Minor fixes and improvements.
Minor fixes and improvements.
- Title search behavior now includes automatic partial matching fallback
- Smart title search implementation
- Inline comments separation feature
Full changelog
- Informational logging added for page listing operations
Full changelog
Minor fixes and improvements.
Default transport changed from HTTP to STDIO for MCP client integration.
Full changelog
Minor fixes and improvements.
- Migrate from deprecated SSE to dual transport support (STDIO + HTTP)
Full changelog
Fixed cross‑platform compatibility by replacing Unix‑specific chmod.
Full changelog
Minor fixes and improvements.