Skip to content

Releases: aashari/mcp-server-atlassian-jira

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 (eddadb4)

v3.2.1

01 Dec 04:51

Choose a tag to compare

3.2.1 (2025-12-01)

Bug Fixes

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

v3.2.0

01 Dec 04:30

Choose a tag to compare

3.2.0 (2025-12-01)

Features

  • modernize MCP SDK to v1.23.0 with registerTool API (8b8161f)

v3.1.0

30 Nov 19:26

Choose a tag to compare

3.1.0 (2025-11-30)

Features

  • add TOON output format for token-efficient LLM responses (#155) (50de5b9)

v3.0.0

28 Nov 07:38

Choose a tag to compare

3.0.0 (2025-11-28)

  • feat!: replace domain-specific tools with generic HTTP method tools (3fef421)

BREAKING CHANGES

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

Before (v2.x):

  • jira_ls_projects, jira_get_project, jira_ls_issues, jira_get_issue
  • jira_create_issue, jira_ls_comments, jira_add_comment, jira_ls_statuses

After (v3.0):

  • jira_get - GET any Jira API endpoint
  • jira_post - POST to any endpoint (create resources)
  • jira_put - PUT to any endpoint (replace resources)
  • jira_patch - PATCH any endpoint (partial updates)
  • jira_delete - DELETE any endpoint

Benefits:

  • Full access to any Jira REST API endpoint
  • JMESPath filtering for response data extraction
  • Consistent interface across all HTTP operations
  • Simplified codebase (removed 64 files, ~13k lines)

Migration examples in README.md

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 (#91) (956e36e)

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 (#89) (4384780)

v2.0.1

07 Aug 09:21

Choose a tag to compare

2.0.1 (2025-08-07)

Bug Fixes

  • transform README to end-user focused and correct configuration (c6c1361)

v2.0.0

02 Aug 08:43

Choose a tag to compare

2.0.0 (2025-08-02)

Features

  • add issue creation tools and fix markdown heading processing (17f7c6a)

BREAKING CHANGES

  • None - these are new additive features

Tools added:

  • jira_get_create_meta: Discover project-specific requirements
  • jira_create_issue: Create issues with full field support

Bug fixes:

  • Markdown headings now properly process bold, italic, code, links
  • Eliminates literal ** characters in Jira heading display

v1.38.0

02 Aug 07:39

Choose a tag to compare

1.38.0 (2025-08-02)

Bug Fixes

  • properly type worklog API interactions (30af904)
  • restore any types for Jira API worklog integration (2cf1db3)
  • standardize dependencies and fix TypeScript linting issues (7292592)

Features

  • enhance CLI startup logging with package info (3ebe190)