freshcrate
Skin:/
Home > MCP Servers > mcp-atlassian

mcp-atlassian

MCP server for Atlassian tools (Confluence, Jira)

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

MCP server for Atlassian tools (Confluence, Jira)

README

MCP Atlassian

PyPI Version PyPI - Downloads PePy - Total Downloads Run Tests License Docs

Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). Supports both Cloud and Server/Data Center deployments.

mcp-atlassian-jira-demo.mp4
Confluence Demo
confluence-1k.mp4

Quick Start

1. Get Your API Token

Go to https://id.atlassian.com/manage-profile/security/api-tokens and create a token.

For Server/Data Center, use a Personal Access Token instead. See Authentication.

2. Configure Your IDE

Add to your Claude Desktop or Cursor MCP configuration:

{
  "mcpServers": {
    "mcp-atlassian": {
      "command": "uvx",
      "args": ["mcp-atlassian"],
      "env": {
        "JIRA_URL": "https://your-company.atlassian.net",
        "JIRA_USERNAME": "your.email@company.com",
        "JIRA_API_TOKEN": "your_api_token",
        "CONFLUENCE_URL": "https://your-company.atlassian.net/wiki",
        "CONFLUENCE_USERNAME": "your.email@company.com",
        "CONFLUENCE_API_TOKEN": "your_api_token"
      }
    }
  }
}

Server/Data Center users: Use JIRA_PERSONAL_TOKEN instead of JIRA_USERNAME + JIRA_API_TOKEN. See Authentication for details.

3. Start Using

Ask your AI assistant to:

  • "Find issues assigned to me in PROJ project"
  • "Search Confluence for onboarding docs"
  • "Create a bug ticket for the login issue"
  • "Update the status of PROJ-123 to Done"

Documentation

Full documentation is available at mcp-atlassian.soomiles.com.

Documentation is also available in llms.txt format, which LLMs can consume easily:

Topic Description
Installation uvx, Docker, pip, from source
Authentication API tokens, PAT, OAuth 2.0
Configuration IDE setup, environment variables
HTTP Transport SSE, streamable-http, multi-user
Tools Reference All Jira & Confluence tools
Troubleshooting Common issues & debugging

Compatibility

Product Deployment Support
Confluence Cloud Fully supported
Confluence Server/Data Center Supported (v6.0+)
Jira Cloud Fully supported
Jira Server/Data Center Supported (v8.14+)

Key Tools

Jira Confluence
jira_search - Search with JQL confluence_search - Search with CQL
jira_get_issue - Get issue details confluence_get_page - Get page content
jira_create_issue - Create issues confluence_create_page - Create pages
jira_update_issue - Update issues confluence_update_page - Update pages
jira_transition_issue - Change status confluence_add_comment - Add comments

72 tools total — See Tools Reference for the complete list.

Security

Never share API tokens. Keep .env files secure. See SECURITY.md.

Contributing

See CONTRIBUTING.md for development setup.

License

MIT - See LICENSE. Not an official Atlassian product.

Release History

VersionChangesUrgencyDate
v0.21.1This release fixes a critical startup crash caused by an upstream dependency break and ships a few community-contributed features that landed on main since v0.21.0. ## 🐛 Fixed ### Server / Transport - **Startup crash on fresh `uvx` installs**: `fakeredis 2.35.0` renamed `FakeConnection` without a backward-compatible alias, breaking `pydocket`'s runtime import and making FastMCP's lifespan fail with `ImportError: cannot import name 'FakeConnection' from 'fakeredis.aioredis'`. Pinned `fakeredisHigh4/10/2026
v0.21.0This release adds 4 new tools (sprint management, page moves, page diffs, comment replies), OAuth proxy support, markdown table rendering, and multiple content processing fixes. ## ✨ Features ### Jira - **Sprint Management**: Move issues between sprints with the new `jira_add_issues_to_sprint` tool ([#1078](https://github.com/sooperset/mcp-atlassian/pull/1078)) - **Cloud Search Pagination**: `jira_search` now returns `next_page_token` for cursor-based pagination on Cloud ([#1079](https://githuLow3/2/2026
v0.20.1This release fixes error handling for the ServiceDesk comment API on non-JSM projects. ## 🐛 Fixed ### Jira - **ServiceDesk 403 handling**: Non-JSM projects return 403 Forbidden (not 404) from the ServiceDesk API when using the `public` parameter for internal/external comments. The error message now clearly indicates the issue is not a JSM service desk project or the user lacks permission ([#1051](https://github.com/sooperset/mcp-atlassian/pull/1051)) **Full Changelog**: https://github.com/soLow2/27/2026
v0.20.0This release adds JSM internal comment support, a Kubernetes Helm chart, and fixes for worklog ADF handling and tool parameter naming. ## ✨ Features ### Jira - **JSM Internal Comments**: New `public` parameter on `add_comment` tool for Jira Service Management issues. Set `public=true` for customer-visible comments or `public=false` for internal agent-only comments. Routes through the ServiceDesk API with plain text body ([#1049](https://github.com/sooperset/mcp-atlassian/pull/1049), fixes [#86Low2/27/2026
v0.19.0This release adds toolset-based tool filtering for granular control over which tools are exposed, OS native trust store support for enterprise SSL environments, and Jira issue watcher tools. ## ✨ Features ### Server - **Toolset-Based Tool Filtering**: New `TOOLSETS` env var groups 68 tools into 21 named toolsets (15 Jira, 6 Confluence) for granular control. Supports `all`, `default`, and comma-separated names. All toolsets enabled by default — in v0.22.0 the default will change to 6 core toolsLow2/27/2026
v0.18.1This release fixes allowlisted domains being incorrectly blocked by the SSRF DNS resolution check. ## 🐛 Fixed ### Server / Transport - **Allowlisted domains bypass DNS resolution check**: When `MCP_ALLOWED_URL_DOMAINS` was set, internal hosts resolving to private IPs (e.g. `10.x.x.x`) were still blocked by the DNS check. Allowlisted domains now return early before DNS resolution, while hard-blocked hostnames (`localhost`, `metadata.google.internal`) and IP literal checks remain enforced ([#10Low2/25/2026
v0.18.0This release adds inline image rendering for both Jira and Confluence, ADF write support for Jira Cloud, and fixes several bugs including stateless HTTP mode and Server/DC user lookup. ## ✨ Features ### Jira - **Inline Image Rendering**: New `jira_get_issue_images` tool returns issue image attachments as base64 `ImageContent` for direct LLM vision processing. Shared MIME detection extracted to `utils/media.py` ([#1001](https://github.com/sooperset/mcp-atlassian/pull/1001)) - **ADF Write SupporLow2/25/2026
v0.17.0This release fixes two security vulnerabilities, adds new Jira features, and includes multiple bug fixes and hardening improvements. ## 🔒 Security - **Path Traversal Guard**: Confluence attachment downloads now validate paths against directory traversal attacks via `validate_safe_path()` with symlink resolution. Jira guards refactored to use the same shared utility. Fixes GHSA-xjgw-4wvw-rgm4 ([#987](https://github.com/sooperset/mcp-atlassian/pull/987)) - **SSRF Protection**: Header-basedLow2/24/2026
v0.16.1This release fixes Confluence Cloud URL construction, adds AI platform schema compatibility, and patches a ReDoS vulnerability. ## 🐛 Fixed ### Confluence - **Double `/wiki` Prefix in Cloud URLs**: `base_url` already includes `/wiki` for Cloud instances (auto-appended by `atlassian-python-api`), but five URL constructions in `v2_adapter.py` and `analytics.py` were prepending it again — producing 404s for analytics views, page attachments, and attachment CRUD operations ([#964](https://github.cLow2/21/2026
v0.16.0This release adds OAuth 2.0 for Atlassian Data Center, Basic Auth multi-user support for MCP gateways, and several auth reliability fixes. ## ✨ Features ### Authentication - **OAuth 2.0 for Data Center**: Extend OAuth support to Atlassian Server/Data Center instances with service-specific env vars (`JIRA_OAUTH_CLIENT_ID`, `CONFLUENCE_OAUTH_CLIENT_ID`), DC-specific token/authorize URLs, and keyring key namespacing ([#952](https://github.com/sooperset/mcp-atlassian/pull/952), fixes [#527](https:Low2/21/2026
v0.15.0This release adds custom field options discovery, consolidates field formatting, and fixes several field-related bugs across create/update workflows. ## ✨ Features ### Jira - **Custom Field Options Discovery**: New `jira_get_field_options` tool to discover allowed values for select, multi-select, radio, checkbox, and cascading select custom fields. Cloud uses the Field Context API with auto-resolution and pagination; Server/DC falls back to createmeta allowedValues ([#944](https://github.com/sLow2/20/2026
v0.14.3This release fixes US Government Cloud (FedRAMP) compatibility, Homebrew packaging support, and Server/DC project key validation. ## 🐛 Fixed ### Jira - **US Government Cloud Support**: Add FedRAMP URL detection for `*.atlassian-us-gov-mod.net` and `*.atlassian-us-gov.net` domains. Without this fix, US Gov Cloud instances were misidentified as Server/DC, causing HTTP 410 errors after the Jira v2 search API deprecation ([#890](https://github.com/sooperset/mcp-atlassian/pull/890)) - **Project KeLow2/20/2026
v0.14.2## 🐛 Bug Fixes - **stdio transport broken** (#935): Replace stdin-reading EOF guard with parent-process monitor. The previous implementation called `sys.stdin.read()` in an executor thread, which held `io.BufferedReader`'s internal lock until EOF — causing FastMCP's stdio reader to block indefinitely and produce silent stdout with no response to `initialize`. Now uses `os.getppid()` polling to detect orphan processes without touching stdin. - **Python 3.14 support**: Remove `<3.14` upper bounLow2/18/2026
v0.14.1## 🐛 Fixed - **SLA Tool Name**: Rename `jira_jira_get_issue_sla` → `jira_get_issue_sla` (double-prefix bug from FastMCP tool registration) ([#934](https://github.com/sooperset/mcp-atlassian/pull/934)) - **Sprint Date Validation**: Fix crash when `start_date` is a date-only string (e.g., `\"2026-03-01\"`) — was raising `TypeError: can't compare offset-naive and offset-aware datetimes` ([#934](https://github.com/sooperset/mcp-atlassian/pull/934))Low2/18/2026
v0.14.0This release is a focused stability patch addressing community-reported bugs accumulated since v0.13.1. ## 🐛 Fixed ### Jira - **Critical: Issue Updates Broken**: Reverted incorrect `fields=` kwarg in `update_issue` that broke all Jira issue updates after v0.13.0 ([#926](https://github.com/sooperset/mcp-atlassian/pull/926)) - **Silent Assignee Drop**: Fix assignee silently dropped on Server/DC — now assigned post-creation when `assignee` field is set ([#925](https://github.com/sooperset/mcp-atLow2/18/2026
v0.13.1This release brings significant new capabilities including Jira SLA metrics, ProForma forms support, development info integration, Confluence attachment CRUD and page versioning, plus multi-tenant authentication and numerous stability fixes. ## ✨ Features ### Jira - **SLA Metrics**: Added `jira_get_issue_sla` tool for querying SLA metrics on issues ([#839](https://github.com/sooperset/mcp-atlassian/pull/839)) - **Issue Date Tracking**: Added `jira_get_issue_dates` tool for retrieving issue datLow2/18/2026
v0.13.0This release adds mTLS support, stateless mode for streamable-http, and critical stability fixes for Windows and SSL connections. ## ✨ Features - **Stateless Mode**: Added stateless mode for streamable-http transport, enabling horizontal scaling ([#831](https://github.com/sooperset/mcp-atlassian/pull/831)) - **mTLS Support**: Added client certificate authentication (mTLS) support for secure connections ([#830](https://github.com/sooperset/mcp-atlassian/pull/830)) - **Jira additional_fields**: Low1/6/2026
v0.12.0This release includes critical stability fixes for ASGI middleware and Docker, along with new configuration options and Jira 9+ compatibility. ## ✨ Features - **DISABLE_JIRA_MARKUP_TRANSLATION**: New config option to disable Jira-to-Markdown conversion when not needed ([#712](https://github.com/sooperset/mcp-atlassian/pull/712)) - **Comment Visibility**: Added `visibility` parameter to `jira:add_comment` for controlling comment visibility ([#689](https://github.com/sooperset/mcp-atlassian/pullLow12/30/2025
v0.11.12This release adds MCP tool safety annotations, Confluence folder support, and Claude Code GitHub Action for AI-assisted reviews. ## ✨ Features - **MCP Tool Annotations**: Added `readOnlyHint` and `destructiveHint` annotations to all 42 tools for safer LLM decision-making ([#789](https://github.com/sooperset/mcp-atlassian/pull/789)) - **Confluence Child Folders**: Added support for including child folders in `get_page_children()` results with graceful degradation ([#787](https://github.com/soopLow12/29/2025
v0.11.11This release fixes critical ADF parsing issues, adds FastMCP 2.14.x support with security fixes, and improves read-only mode filtering. ## ✨ Features - **ADF Node Handlers**: Added support for mention, emoji, date, status, inlineCard, and codeBlock nodes in Atlassian Document Format parsing ([#793](https://github.com/sooperset/mcp-atlassian/pull/793)) ## 🐛 Fixed - **FastMCP 2.14.x Compatibility**: Fixed server compatibility with FastMCP 2.14.x including `http_app()` override and `_list_toolLow12/29/2025
v0.11.10This release fixes critical Jira Cloud search compatibility issues, improves Confluence page retrieval reliability, and enhances Multi-Cloud OAuth support. ## ✨ Features - **Simplified Search Results**: Added `JiraSearchResult.to_simplified_dict()` method for easier integration and data processing ([#585](https://github.com/sooperset/mcp-atlassian/pull/585)) ## 🐛 Fixed - **Jira Cloud Search API**: Migrated Cloud search from deprecated v2 to v3 API endpoint, fixing search failures on Jira ClLow11/26/2025
v0.11.9This release enhances corporate environment support, improves OAuth authentication reliability, and fixes critical issues with Jira Epic creation and Confluence API operations. ## ✨ Features - **Custom HTTP Headers Support**: Configure additional HTTP headers for Jira and Confluence API requests via environment variables, enabling usage in corporate environments requiring authentication, routing, or security headers ([#570](https://github.com/sooperset/mcp-atlassian/pull/570)) ## 🐛 FixLow6/29/2025
v0.11.8This release introduces OAuth multi-cloud support, enhances Jira functionality, and fixes critical authentication and query issues. ## ✨ Features - **OAuth Multi-Cloud Support**: Connect to different Atlassian Cloud instances through a single server using `X-Atlassian-Cloud-Id` header and per-request authentication ([#471](https://github.com/sooperset/mcp-atlassian/pull/471)) - **Bring Your Own Token OAuth**: Support externally managed OAuth tokens via `ATLASSIAN_OAUTH_ACCESS_TOKEN` envirLow6/25/2025
v0.11.7This release addresses critical compatibility issues affecting Windows environments, Jira Server status transitions, and Confluence page operations with numeric IDs. These fixes enhance cross-platform stability and improve LLM client integration. ## 🐛 Fixed **Windows Server Shutdown Stability**: Resolved "ValueError: I/O operation on closed file" errors that occurred during server shutdown, particularly affecting Windows environments and Claude Desktop integration. The fix gracefully handLow6/19/2025
v0.11.6This release adds native wiki markup support for Confluence page operations and simplifies the transport lifecycle testing infrastructure following the previous stdin monitoring fixes. ## ✨ Features **Wiki Markup Support for Confluence**: Added comprehensive support for creating and updating Confluence pages using native wiki markup syntax and storage format. This enhancement enables users to leverage Confluence-specific features like `{toc}`, `{panel}`, and `{change-history}` macros that Low6/18/2025
v0.11.5This release fixes a critical issue affecting streamable-http transport where sessions were terminated immediately after initialization, preventing subsequent API calls in containerized environments. ## 🐛 Fixed **Streamable-HTTP Session Management**: Resolved session termination issue where HTTP transports (SSE and streamable-http) incorrectly used stdin monitoring, causing premature shutdown when clients closed their stdin. This prevented the `initialize → tools/list` flow from working cLow6/18/2025
v0.11.4This release fixes a critical regression introduced in v0.11.3 that prevented the MCP Atlassian server from starting when using stdio transport in Docker containers. 🐛 Fixed Docker stdio transport compatibility: Resolved a race condition where the lifecycle monitoring introduced in v0.11.3 conflicted with the MCP server's internal stdio handling. This caused immediate startup failures with "I/O operation on closed file" errors when running in Docker containers. The fix disables stdin moniLow6/18/2025
v0.11.3This release enhances Docker container integration with critical lifecycle management fixes, expands Jira project management capabilities with new version and project discovery tools, and strengthens the testing infrastructure with comprehensive integration tests. ## ✨ Features **Docker Lifecycle Management**: Implemented comprehensive signal handling and stdin monitoring to ensure graceful shutdown in containerized environments. This critical enhancement resolves hanging container issues Low6/17/2025
v0.11.2This release enhances Jira functionality with issue link support and project version management, while streamlining the development workflow with automated versioning and improved authentication documentation. ## ✨ Features **Jira Issue Links Support**: Added comprehensive support for the `issuelinks` field in Jira issues, enabling retrieval and representation of linked issues and their relationship types. This enhancement includes: - New Pydantic models: `JiraIssueLinkType`, `JiraLinkedILow5/30/2025
v0.11.1This is a hotfix release that addresses a critical bug affecting Jira write operations and improves the consistency of read-only mode handling across all tools. ### 🐞 Fixed - **Jira Write Operations in Read-Only Mode:** Fixed an `AttributeError: 'JiraConfig' object has no attribute 'read_only'` that occurred when attempting to use Jira write tools. This issue (reported in #434) was caused by recent authentication refactoring. The `read_only` check now correctly uses the global applicatiLow5/19/2025
v0.11.0This release marks a significant step forward in flexibility and user-specific interactions with `mcp-atlassian`. Version 0.11.0 introduces robust **multi-user authentication** for HTTP transports, expands Confluence capabilities with a new **commenting tool** and **improved page lookup**, and addresses important macro processing issues. ### ✨ Highlights - **Multi-User Authentication for HTTP Transports (OAuth & PAT):** You can now run `mcp-atlassian` as a shared service where indivLow5/17/2025
v0.10.6This release enhances the OAuth 2.0 authentication experience with improved detection logic and comprehensive documentation. ### 🔐 OAuth Improvements - **Better OAuth Detection:** Fixed configuration detection to properly recognize and prioritize OAuth 2.0 when all required environment variables (including `ATLASSIAN_OAUTH_CLOUD_ID`) are present. This ensures OAuth takes precedence over other authentication methods when fully configured. (#410, #412) ### 📚 Documentation - **ComprehLow5/11/2025
v0.10.5This release improves client compatibility and updates core dependencies for better stability with the latest FastMCP framework. ### 🐞 Fixed - **Better Client Compatibility:** Fixed how optional parameters are handled in Jira and Confluence tools to work smoothly with different MCP clients like Cursor IDE. Empty default values are now properly managed, addressing issues reported in #389. (#407) - **FastMCP 2.3.1 Support:** Updated type hints to prevent "Context is not subscriptable" errorsLow5/10/2025
v0.10.4## v0.10.4 This release enhances OAuth 2.0 stability, adds a Jira user profile tool, and improves Confluence tool compatibility. ### 🎉 Features - **Jira User Profile Tool (`jira_get_user_profile`):** New tool to retrieve Jira user details (name, email, avatar) using various identifiers (accountId, username, email). Enables better user-related automations. (#396) - **Enhanced OAuth 2.0 Stability (`offline_access` Scope):** Added `offline_access` scope to OAuth configurations to enaLow5/9/2025
v0.10.3This release introduces proxy support and addresses a critical compatibility issue encountered when running the server via `uvx`. ### 🎉 Added * **Proxy Support:** Added support for routing Jira and Confluence API requests through HTTP/S and SOCKS proxies. Configure proxies using standard environment variables (`HTTP_PROXY`, `HTTPS_PROXY`, `SOCKS_PROXY`, `NO_PROXY`) or service-specific overrides (e.g., `JIRA_HTTPS_PROXY`, `CONFLUENCE_NO_PROXY`). Refer to the README and `.env.example` forLow5/6/2025
v0.10.2## 🐞 Fixes - SSE Docker Network Fix: Modified the SSE server to bind to "0.0.0.0" instead of the default localhost, allowing connections from any network interface when running in Docker containers. (#378) **Full Changelog**: https://github.com/sooperset/mcp-atlassian/compare/v0.10.1...v0.10.2Low5/5/2025
v0.10.1## 🐞 Fixes - **Restore Health Check Endpoint:** This release fixes a regression introduced in v0.10.0 where the `/healthz` endpoint (added to fix [#359](https://github.com/sooperset/mcp-atlassian/issues/359)) was accidentally removed during the FastMCP v2 migration ([#371](https://github.com/sooperset/mcp-atlassian/issues/371)). The `/healthz` endpoint is now correctly available again for Kubernetes health probes when using the SSE transport. ([#375](https://github.com/sooperset/mcp-atlassiaLow5/5/2025
v0.10.0This release introduces **OAuth 2.0 support for Atlassian Cloud**, migrates the server backend to **FastMCP v2**, and significantly improves **Jira Cloud search** functionality. ## ✨ Highlights * **OAuth 2.0 for Cloud:** Added secure OAuth 2.0 authentication for Jira/Confluence Cloud, including an interactive setup wizard (`uvx mcp-atlassian --oauth-setup`). (#365, Fixes #238) * **FastMCP v2 Migration:** Updated the core server to use the modern FastMCP framework for improved structurLow5/5/2025
v0.9.0## What's Changed * Support on-prem servers by @msabramo in https://github.com/sooperset/mcp-atlassian/pull/350 * feat: add support for getting and adding labels for Confluence pages by @mroeckl in https://github.com/sooperset/mcp-atlassian/pull/328 * Refactor: improve code quality and clean up technical debt by @cutekibry in https://github.com/sooperset/mcp-atlassian/pull/345 * Feat: add batch get changelogs by @cutekibry in https://github.com/sooperset/mcp-atlassian/pull/346 * fix(jira): Low5/1/2025
v0.8.4## What's Changed * fix: Added create_sprint by @qorpus in https://github.com/sooperset/mcp-atlassian/pull/235 * Feature/add get link types by @nigel-upstart in https://github.com/sooperset/mcp-atlassian/pull/325 * Correct jira_update_issue example for assignee format by @eran-rom in https://github.com/sooperset/mcp-atlassian/pull/339 * Fix SSL verification environment variables in Docker containers by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/340 * chore: bump version tLow4/26/2025
v0.8.3## What's Changed * Remove Resources Functionality to Fix Excessive Startup Requests by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/322 * chore: bump version to 0.8.3 by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/323 **Full Changelog**: https://github.com/sooperset/mcp-atlassian/compare/v0.8.2...v0.8.3Low4/23/2025
v0.8.2## What's Changed * Revert: Rollback FastMCP v2 refactoring to resolve v0.8.1 issues by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/320 * chore: bump version to 0.8.2 by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/321 **Full Changelog**: https://github.com/sooperset/mcp-atlassian/compare/v0.8.1...v0.8.2Low4/23/2025
v0.8.1## What's Changed * Fix: Jira search pagination parameter mismatch (#308) by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/309 * chore: bump version to 0.8.1 by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/310 **Full Changelog**: https://github.com/sooperset/mcp-atlassian/compare/v0.8.0...v0.8.1Low4/21/2025
v0.8.0## What's Changed * Add Docker Installation Support and Homebrew Option for macOS by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/283 * fix: add update_sprint by @qorpus in https://github.com/sooperset/mcp-atlassian/pull/245 * Feature/update parentid by @jo-s-eph in https://github.com/sooperset/mcp-atlassian/pull/284 * implement enhanced startup connection feedback with sensitive data masking by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/292 * Add versionLow4/21/2025
v0.7.1## What's Changed * Fix: Unwrap request to create issues by @lhays5 in https://github.com/sooperset/mcp-atlassian/pull/273 * Fix AttributeError in jira_get_epic_issues tool when processing list results by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/280 * Fix jira_get_issue tool to include comments when requested with comment_limit by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/281 * chore: bump version to 0.7.1 by @sooperset in https://github.com/soopersetLow4/17/2025
v0.7.0## What's Changed * Feature: Add jira_batch_create_issues tool by @lhays5 in https://github.com/sooperset/mcp-atlassian/pull/244 * Docs: Improve README Clarity, Structure, and Examples by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/256 * Docs: fix typo by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/258 * Feat: Add GitHub Issue Templates by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/263 * Feat: Add GitHub PR Templates by @sooperset in htLow4/16/2025
v0.6.5## What's Changed * Fix handling of fixVersions when provided in additional_fields (#241) by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/247 * Fix assignee functionality in Jira Data Center/Server during issue creation (#223) by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/248 * Refactor: modularize jira pydantic models into dedicated package by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/249 * Fix: Add missing standard Jira fields (#230) Low4/12/2025
v0.6.4## What's Changed * fix: windsurf parse error by @BEMELON in https://github.com/sooperset/mcp-atlassian/pull/228 * Fix #226 by @cutekibry in https://github.com/sooperset/mcp-atlassian/pull/227 * chore: bump version to 0.6.4 by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/233 ## New Contributors * @BEMELON made their first contribution in https://github.com/sooperset/mcp-atlassian/pull/228 * @cutekibry made their first contribution in https://github.com/sooperset/mcp-atlaLow4/9/2025
v0.6.3## What's Changed * Fix Windsurf unable to parse input schema for jira_create_issue by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/215 * Quick fix: Document fixVersions workaround for required fields by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/216 * Fix: Add proper support for Jira timetracking field (#213) by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/217 * chore: bump version to 0.6.3 by @sooperset in https://github.com/sooperset/mcLow4/6/2025
v0.6.2## What's Changed * Support Jira "Component/s" field when creating the tickets by @klacol in https://github.com/sooperset/mcp-atlassian/pull/207 * Enhance Jira component support to allow multiple components by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/208 * Fix "cannot access local variable 'pages'" error in confluence_get_page_children tool by @sooperset in https://github.com/sooperset/mcp-atlassian/pull/209 * chore: bump version to 0.6.2 by @sooperset in https://github.Low4/5/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

sqltools_mcp🔌 Access multiple databases seamlessly with SQLTools MCP, a versatile service supporting MySQL, PostgreSQL, SQL Server, DM8, and SQLite without multiple servers.main@2026-06-07
kagglerun🚀 Run Python on Kaggle's free GPUs directly from your terminal without the need for a browser, streamlining your data science workflow.master@2026-06-07
PlanExeCreate a plan from a description in minutesmain@2026-06-07
claude-code-configClaude Code skills, architectural principles, and alternative approaches for AI-assisted developmentmain@2026-06-06
aiA productive AI coworker that learns, self-improves, and ships work.main@2026-06-06

More in MCP Servers

claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme
hyperframesWrite HTML. Render video. Built for agents.
claude-code-guideClaude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks go from beginner to power user!