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

mcp-server-atlassian-jira

Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities

Why this rank:Strong adoptionHealthy release cadenceRelease freshness

Description

Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracking workflows.

README

Connect AI to Your Jira Projects

Transform how you manage and track your work by connecting Claude, Cursor AI, and other AI assistants directly to your Jira projects, issues, and workflows. Get instant project insights, streamline issue management, and enhance your team collaboration.

NPM Version

What You Can Do

  • Ask AI about your projects: "What are the active issues in the DEV project?"
  • Get issue insights: "Show me details about PROJ-123 including comments"
  • Track project progress: "List all high priority issues assigned to me"
  • Manage issue comments: "Add a comment to PROJ-456 about the test results"
  • Search across projects: "Find all bugs in progress across my projects"
  • Create and update issues: "Create a new bug in the MOBILE project"

Perfect For

  • Developers who need quick access to issue details and development context
  • Project Managers tracking progress, priorities, and team assignments
  • Scrum Masters managing sprints and workflow states
  • Team Leads monitoring project health and issue resolution
  • QA Engineers tracking bugs and testing status
  • Anyone who wants to interact with Jira using natural language

Quick Start

Get up and running in 2 minutes:

1. Get Your Jira Credentials

Generate a Jira API Token:

  1. Go to Atlassian API Tokens
  2. Click Create API token
  3. Give it a name like "AI Assistant"
  4. Copy the generated token immediately (you won't see it again!)

2. Try It Instantly

# Set your credentials
export ATLASSIAN_SITE_NAME="your-company"  # for your-company.atlassian.net
export ATLASSIAN_USER_EMAIL="your.email@company.com"
export ATLASSIAN_API_TOKEN="your_api_token"

# List your Jira projects
npx -y @aashari/mcp-server-atlassian-jira get --path "/rest/api/3/project/search"

# Get details about a specific project
npx -y @aashari/mcp-server-atlassian-jira get --path "/rest/api/3/project/DEV"

# Get an issue with JMESPath filtering
npx -y @aashari/mcp-server-atlassian-jira get --path "/rest/api/3/issue/PROJ-123" --jq "{key: key, summary: fields.summary, status: fields.status.name}"

Connect to AI Assistants

For Claude Desktop Users

Add this to your Claude configuration file (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@aashari/mcp-server-atlassian-jira"],
      "env": {
        "ATLASSIAN_SITE_NAME": "your-company",
        "ATLASSIAN_USER_EMAIL": "your.email@company.com",
        "ATLASSIAN_API_TOKEN": "your_api_token"
      }
    }
  }
}

Restart Claude Desktop, and you'll see the jira server in the status bar.

For Other AI Assistants

Most AI assistants support MCP. Install the server globally:

npm install -g @aashari/mcp-server-atlassian-jira

Then configure your AI assistant to use the MCP server with STDIO transport.

Alternative: Configuration File

Create ~/.mcp/configs.json for system-wide configuration:

{
  "jira": {
    "environments": {
      "ATLASSIAN_SITE_NAME": "your-company",
      "ATLASSIAN_USER_EMAIL": "your.email@company.com",
      "ATLASSIAN_API_TOKEN": "your_api_token"
    }
  }
}

Alternative config keys: The system also accepts "atlassian-jira", "@aashari/mcp-server-atlassian-jira", or "mcp-server-atlassian-jira" instead of "jira".

Available Tools

This MCP server provides 5 generic tools that can access any Jira API endpoint:

Tool Description
jira_get GET any Jira API endpoint (read data)
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 (remove resources)

Common API Paths

Projects:

  • /rest/api/3/project/search - List all projects (paginated, recommended)
  • /rest/api/3/project - List all projects (non-paginated, legacy)
  • /rest/api/3/project/{projectKeyOrId} - Get project details

Issues:

  • /rest/api/3/search/jql - Search issues with JQL (use jql query param). IMPORTANT: /rest/api/3/search is deprecated!
  • /rest/api/3/issue/{issueIdOrKey} - Get issue details
  • /rest/api/3/issue - Create issue (POST)
  • /rest/api/3/issue/{issueIdOrKey}/transitions - Get/perform transitions

Comments:

  • /rest/api/3/issue/{issueIdOrKey}/comment - List/add comments
  • /rest/api/3/issue/{issueIdOrKey}/comment/{commentId} - Get/update/delete comment

Worklogs:

  • /rest/api/3/issue/{issueIdOrKey}/worklog - List/add worklogs
  • /rest/api/3/issue/{issueIdOrKey}/worklog/{worklogId} - Get/update/delete worklog

Users & Statuses:

  • /rest/api/3/myself - Get current user
  • /rest/api/3/user/search - Search users (use query param)
  • /rest/api/3/status - List all statuses
  • /rest/api/3/issuetype - List issue types
  • /rest/api/3/priority - List priorities

TOON Output Format

By default, all responses use TOON (Token-Oriented Object Notation) format, which reduces token usage by 30-60% compared to JSON. TOON uses tabular arrays and minimal syntax, making it ideal for AI consumption.

To use JSON instead: Add --output-format json to CLI commands or set outputFormat: "json" in MCP tool calls.

Example TOON vs JSON:

TOON: key|summary|status
      PROJ-1|First issue|Open
      PROJ-2|Second issue|Done

JSON: [{"key":"PROJ-1","summary":"First issue","status":"Open"},
       {"key":"PROJ-2","summary":"Second issue","status":"Done"}]

JMESPath Filtering

All tools support optional JMESPath (jq) filtering to extract specific data:

# Get just project names and keys
npx -y @aashari/mcp-server-atlassian-jira get \
  --path "/rest/api/3/project/search" \
  --jq "values[].{key: key, name: name}"

# Get issue key and summary
npx -y @aashari/mcp-server-atlassian-jira get \
  --path "/rest/api/3/issue/PROJ-123" \
  --jq "{key: key, summary: fields.summary, status: fields.status.name}"

Response Truncation and Raw Logs

For large API responses (>40k characters ≈ 10k tokens), responses are automatically truncated with guidance. The complete raw response is saved to /tmp/mcp/mcp-server-atlassian-jira/<timestamp>-<random>.txt for reference.

When truncated, you'll see:

  • A truncation notice with the raw file path
  • Suggestions to refine your query with better filters
  • Percentage of data shown vs total size

Real-World Examples

Explore Your Projects

Ask your AI assistant:

  • "List all projects I have access to"
  • "Show me details about the DEV project"
  • "What projects contain the word 'Platform'?"

Search and Track Issues

Ask your AI assistant:

  • "Find all high priority issues in the DEV project"
  • "Show me issues assigned to me that are in progress"
  • "Search for bugs reported in the last week"
  • "List all open issues for the mobile team"

Manage Issue Details

Ask your AI assistant:

  • "Get full details about issue PROJ-456 including comments"
  • "What's the current status and assignee of PROJ-123?"
  • "Display all comments on the authentication bug"

Issue Communication

Ask your AI assistant:

  • "Add a comment to PROJ-456: 'Code review completed, ready for testing'"
  • "Comment on the login issue that it's been deployed to staging"

CLI Commands

The CLI mirrors the MCP tools for direct terminal access:

# GET request (returns TOON format by default)
npx -y @aashari/mcp-server-atlassian-jira get --path "/rest/api/3/project/search"

# GET with query parameters and JSON output
npx -y @aashari/mcp-server-atlassian-jira get \
  --path "/rest/api/3/search/jql" \
  --query-params '{"jql": "project=DEV AND status=\"In Progress\"", "maxResults": "10"}' \
  --output-format json

# GET with JMESPath filtering to extract specific fields
npx -y @aashari/mcp-server-atlassian-jira get \
  --path "/rest/api/3/issue/PROJ-123" \
  --jq "{key: key, summary: fields.summary, status: fields.status.name}"

# POST request (create an issue)
npx -y @aashari/mcp-server-atlassian-jira post \
  --path "/rest/api/3/issue" \
  --body '{"fields": {"project": {"key": "DEV"}, "summary": "New issue title", "issuetype": {"name": "Task"}}}'

# POST request (add a comment)
npx -y @aashari/mcp-server-atlassian-jira post \
  --path "/rest/api/3/issue/PROJ-123/comment" \
  --body '{"body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "My comment"}]}]}}'

# PUT request (update issue - full replacement)
npx -y @aashari/mcp-server-atlassian-jira put \
  --path "/rest/api/3/issue/PROJ-123" \
  --body '{"fields": {"summary": "Updated title"}}'

# PATCH request (partial update)
npx -y @aashari/mcp-server-atlassian-jira patch \
  --path "/rest/api/3/issue/PROJ-123" \
  --body '{"fields": {"summary": "Updated title"}}'

# DELETE request
npx -y @aashari/mcp-server-atlassian-jira delete \
  --path "/rest/api/3/issue/PROJ-123/comment/12345"

Note: All CLI commands support:

  • --output-format - Choose between toon (default, token-efficient) or json
  • --jq - Filter response with JMESPath expressions
  • --query-params - Pass query parameters as JSON string

Troubleshooting

"Authentication failed" or "403 Forbidden"

  1. Check your API Token permissions:

  2. Verify your site name format:

    • If your Jira URL is https://mycompany.atlassian.net
    • Your site name should be just mycompany
  3. Test your credentials:

    npx -y @aashari/mcp-server-atlassian-jira get --path "/rest/api/3/myself"

"Resource not found" or "404"

  1. Check the API path:

    • Paths are case-sensitive
    • Use project keys (e.g., DEV) not project names
    • Issue keys include the project prefix (e.g., DEV-123)
  2. Verify access permissions:

    • Make sure you have access to the project in your browser
    • Some projects may be restricted to certain users

"No results found" when searching

  1. Try different search terms:

    • Use project keys instead of project names
    • Try broader search criteria
  2. Check JQL syntax:

    • Validate your JQL in Jira's advanced search first

Claude Desktop Integration Issues

  1. Restart Claude Desktop after updating the config file
  2. Verify config file location:
    • macOS: ~/.claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json

Getting Help

If you're still having issues:

  1. Run a simple test command to verify everything works
  2. Check the GitHub Issues for similar problems
  3. Create a new issue with your error message and setup details

Frequently Asked Questions

What permissions do I need?

Your Atlassian account needs:

  • Access to Jira with the appropriate permissions for the projects you want to query
  • API token with appropriate permissions (automatically granted when you create one)

Can I use this with Jira Server (on-premise)?

Currently, this tool only supports Jira Cloud. Jira Server/Data Center support may be added in future versions.

How do I find my site name?

Your site name is the first part of your Jira URL:

  • URL: https://mycompany.atlassian.net -> Site name: mycompany
  • URL: https://acme-corp.atlassian.net -> Site name: acme-corp

What AI assistants does this work with?

Any AI assistant that supports the Model Context Protocol (MCP):

  • Claude Desktop
  • Cursor AI
  • Continue.dev
  • Many others

Is my data secure?

Yes! This tool:

  • Runs entirely on your local machine
  • Uses your own Jira credentials
  • Never sends your data to third parties
  • Only accesses what you give it permission to access

Can I search across multiple projects?

Yes! Use JQL queries for cross-project searches. For example:

npx -y @aashari/mcp-server-atlassian-jira get \
  --path "/rest/api/3/search/jql" \
  --query-params '{"jql": "assignee=currentUser() AND status=\"In Progress\""}'

Technical Details

Recent Updates

Version 3.2.1 (December 2025):

  • Added TOON output format for 30-60% token reduction
  • Implemented automatic response truncation for large payloads (>40k chars)
  • Raw API responses saved to /tmp/mcp/mcp-server-atlassian-jira/ for reference
  • Updated to MCP SDK v1.23.0 with modern registerTool API
  • Fixed deprecated /rest/api/3/search endpoint (now use /rest/api/3/search/jql)
  • Updated all dependencies to latest versions (Zod v4.1.13, Commander v14.0.2)

Requirements

  • Node.js: 18.0.0 or higher
  • MCP SDK: v1.23.0 (uses modern registration APIs)
  • Jira: Cloud only (Server/Data Center not supported)

Architecture

This server follows the 5-layer MCP architecture:

  1. CLI Layer - Human interface using Commander.js
  2. Tools Layer - AI interface with Zod validation
  3. Controllers Layer - Business logic and orchestration
  4. Services Layer - Direct Jira REST API calls
  5. Utils Layer - Cross-cutting concerns (logging, formatting, transport)

Debugging

Enable debug logging by setting the DEBUG environment variable:

# In Claude Desktop config
{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@aashari/mcp-server-atlassian-jira"],
      "env": {
        "DEBUG": "true",
        "ATLASSIAN_SITE_NAME": "your-company",
        "ATLASSIAN_USER_EMAIL": "your.email@company.com",
        "ATLASSIAN_API_TOKEN": "your_api_token"
      }
    }
  }
}

Debug logs are written to ~/.mcp/data/mcp-server-atlassian-jira.<session-id>.log

Check raw API responses: When responses are truncated, the full raw response is saved to /tmp/mcp/mcp-server-atlassian-jira/<timestamp>-<random>.txt with request/response details.

Migration from v2.x

Version 3.0 replaces 8+ specific tools with 5 generic HTTP method tools. If you're upgrading from v2.x:

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, jira_post, jira_put, jira_patch, jira_delete

Migration examples:

  • jira_ls_projects -> jira_get with path /rest/api/3/project/search
  • jira_get_project -> jira_get with path /rest/api/3/project/{key}
  • jira_get_issue -> jira_get with path /rest/api/3/issue/{key}
  • jira_create_issue -> jira_post with path /rest/api/3/issue
  • jira_add_comment -> jira_post with path /rest/api/3/issue/{key}/comment
  • jira_ls_statuses -> jira_get with path /rest/api/3/status

Benefits of v3.0+:

  • Full access to any Jira REST API v3 endpoint (not just predefined tools)
  • JMESPath filtering for efficient data extraction
  • Consistent interface across all HTTP methods
  • TOON format for 30-60% token savings
  • Automatic response truncation with raw file logging

Support

Need help? Here's how to get assistance:

  1. Check the troubleshooting section above - most common issues are covered there
  2. Visit our GitHub repository for documentation and examples: github.com/aashari/mcp-server-atlassian-jira
  3. Report issues at GitHub Issues
  4. Start a discussion for feature requests or general questions

Made with care for teams who want to bring AI into their project management workflow.

Release History

VersionChangesUrgencyDate
v3.3.0# [3.3.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v3.2.1...v3.3.0) (2025-12-03) ### Features * add raw response logging with truncation for large API responses ([eddadb4](https://github.com/aashari/mcp-server-atlassian-jira/commit/eddadb4746da826a594baf95cb4b2f1352360bf6)) Low12/3/2025
v3.2.1## [3.2.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v3.2.0...v3.2.1) (2025-12-01) ### Bug Fixes * **deps:** regenerate package-lock.json for CI compatibility ([c4559c9](https://github.com/aashari/mcp-server-atlassian-jira/commit/c4559c977be8a43261f5f6b2878cb8c0ec13e281)) Low12/1/2025
v3.2.0# [3.2.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v3.1.0...v3.2.0) (2025-12-01) ### Features * modernize MCP SDK to v1.23.0 with registerTool API ([8b8161f](https://github.com/aashari/mcp-server-atlassian-jira/commit/8b8161f1e7a04b624e1e07f9bb8a68db0a9d56eb)) Low12/1/2025
v3.1.0# [3.1.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v3.0.0...v3.1.0) (2025-11-30) ### Features * add TOON output format for token-efficient LLM responses ([#155](https://github.com/aashari/mcp-server-atlassian-jira/issues/155)) ([50de5b9](https://github.com/aashari/mcp-server-atlassian-jira/commit/50de5b921a2f896de3834e70ac8f6e965d2b6a97)) Low11/30/2025
v3.0.0# [3.0.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v2.1.1...v3.0.0) (2025-11-28) * feat!: replace domain-specific tools with generic HTTP method tools ([3fef421](https://github.com/aashari/mcp-server-atlassian-jira/commit/3fef4218b7657b26a4e55bfae7278138755f837e)) ### 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_lsLow11/28/2025
v2.1.1## [2.1.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v2.1.0...v2.1.1) (2025-09-09) ### Bug Fixes * prevent dotenv from outputting to STDIO in MCP mode ([#91](https://github.com/aashari/mcp-server-atlassian-jira/issues/91)) ([956e36e](https://github.com/aashari/mcp-server-atlassian-jira/commit/956e36eeab1a4237e1b48fca87c36f498877a942)) Low9/9/2025
v2.1.0# [2.1.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v2.0.1...v2.1.0) (2025-09-09) ### Features * modernize dependencies and ensure Zod v3.25.76 MCP SDK compatibility ([#89](https://github.com/aashari/mcp-server-atlassian-jira/issues/89)) ([4384780](https://github.com/aashari/mcp-server-atlassian-jira/commit/4384780f74d22d56d75eb5ade197bfd7c1549d3e)) Low9/9/2025
v2.0.1## [2.0.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v2.0.0...v2.0.1) (2025-08-07) ### Bug Fixes * transform README to end-user focused and correct configuration ([c6c1361](https://github.com/aashari/mcp-server-atlassian-jira/commit/c6c1361b3f2e1882f1da7167b02eaa86002857bb)) Low8/7/2025
v2.0.0# [2.0.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.38.0...v2.0.0) (2025-08-02) ### Features * add issue creation tools and fix markdown heading processing ([17f7c6a](https://github.com/aashari/mcp-server-atlassian-jira/commit/17f7c6a44dd06583e2d3dd8a7be72c69a11831c7)) ### 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 BugLow8/2/2025
v1.38.0# [1.38.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.37.1...v1.38.0) (2025-08-02) ### Bug Fixes * properly type worklog API interactions ([30af904](https://github.com/aashari/mcp-server-atlassian-jira/commit/30af9042b8b4a5f5d426482ed76a8a57527034cd)) * restore any types for Jira API worklog integration ([2cf1db3](https://github.com/aashari/mcp-server-atlassian-jira/commit/2cf1db3ef9dea3d74c4b15f6d770dc488b090751)) * standardize dependencies and fix TypeScript linting issLow8/2/2025
v1.37.1## [1.37.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.37.0...v1.37.1) (2025-06-22) ### Bug Fixes * change default transport from HTTP to STDIO for proper MCP client integration ([505d0a1](https://github.com/aashari/mcp-server-atlassian-jira/commit/505d0a18f9c984de8ef52a2138970f90b69b7d5a)) Low6/22/2025
v1.37.0# [1.37.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.36.1...v1.37.0) (2025-06-22) ### Features * add JIRA worklog CRUD operations support ([a5aed8f](https://github.com/aashari/mcp-server-atlassian-jira/commit/a5aed8f365508f1ddf888b439e93a35b19f6f4f4)) Low6/22/2025
v1.36.1## [1.36.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.36.0...v1.36.1) (2025-06-22) ### Bug Fixes * update dependencies ([2638141](https://github.com/aashari/mcp-server-atlassian-jira/commit/26381416844470227e3ce0e88b10c4bc10427a8e)) Low6/22/2025
v1.36.0# [1.36.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.6...v1.36.0) (2025-06-22) ### Features * migrate from deprecated SSE to dual transport support (STDIO + HTTP) ([3fb5b21](https://github.com/aashari/mcp-server-atlassian-jira/commit/3fb5b2176275cf33b2e4ab595f1c9f04e2030d21)) Low6/22/2025
v1.35.6## [1.35.6](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.5...v1.35.6) (2025-06-02) ### Bug Fixes * replace Unix-specific chmod with cross-platform ensure-executable script ([5bec5dd](https://github.com/aashari/mcp-server-atlassian-jira/commit/5bec5dd15ef382027093c518c19a5fd1236fdee5)) Low6/2/2025
v1.35.5## [1.35.5](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.4...v1.35.5) (2025-06-02) ### Bug Fixes * update dependencies ([857f316](https://github.com/aashari/mcp-server-atlassian-jira/commit/857f3163796ce5744c06123487e70b1e4f51f357)) Low6/2/2025
v1.35.4## [1.35.4](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.3...v1.35.4) (2025-05-21) ### Bug Fixes * Move business logic to controllers and pass args directly in the Jira project ([1c2410e](https://github.com/aashari/mcp-server-atlassian-jira/commit/1c2410ea2f51e3ac0539d5ccf4a2d166a14de70e)) * update dependencies ([e0762bf](https://github.com/aashari/mcp-server-atlassian-jira/commit/e0762bf4c3aa70e47aefaa70fcfbc5e3ed718326)) * Update getProject tool function to pass args dLow5/21/2025
v1.35.3## [1.35.3](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.2...v1.35.3) (2025-05-21) ### Bug Fixes * update dependencies ([1e38c31](https://github.com/aashari/mcp-server-atlassian-jira/commit/1e38c31be1ed4c6455e2f3df041768e7b64300f7)) Low5/21/2025
v1.35.2## [1.35.2](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.1...v1.35.2) (2025-05-20) ### Bug Fixes * update dependencies ([6a2d4fd](https://github.com/aashari/mcp-server-atlassian-jira/commit/6a2d4fda5ba5b6ef219bd435e692babe44dca2a9)) Low5/20/2025
v1.35.1## [1.35.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.35.0...v1.35.1) (2025-05-19) ### Bug Fixes * remove unused extractAndValidate function ([c9bbe74](https://github.com/aashari/mcp-server-atlassian-jira/commit/c9bbe74d8c0a08b5834cf672ca00cc8c7ee6e769)) Low5/19/2025
v1.35.0# [1.35.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.34.0...v1.35.0) (2025-05-19) ### Features * update dependencies ([186e54f](https://github.com/aashari/mcp-server-atlassian-jira/commit/186e54fa6abf6dce031031adfa2379714fd612bb)) Low5/19/2025
v1.34.0# [1.34.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.33.3...v1.34.0) (2025-05-18) ### Features * consolidate output into ControllerResponse.content string ([6a4783c](https://github.com/aashari/mcp-server-atlassian-jira/commit/6a4783cbe944f23cc90e5ffad481a8d906423dba)) * update remaining files to match ControllerResponse interface changes ([d6d4206](https://github.com/aashari/mcp-server-atlassian-jira/commit/d6d420601fcb43e4fcacfca8d0c9afc5610b7870)) Low5/18/2025
v1.33.3## [1.33.3](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.33.2...v1.33.3) (2025-05-17) ### Bug Fixes * remove empty metadata objects and update JSDocs for tool pagination ([d541075](https://github.com/aashari/mcp-server-atlassian-jira/commit/d541075f34db0b4b8ec97836d88ddbca0b8c7096)) Low5/17/2025
v1.33.2## [1.33.2](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.33.1...v1.33.2) (2025-05-17) ### Bug Fixes * simplify status filtering and document case-sensitivity in Jira statuses ([d201279](https://github.com/aashari/mcp-server-atlassian-jira/commit/d2012792a915f47d9414c05832667f09cfb6a0ef)) Low5/17/2025
v1.33.1## [1.33.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.33.0...v1.33.1) (2025-05-17) ### Bug Fixes * improve status name handling in Jira issue filter to handle case differences ([122a05d](https://github.com/aashari/mcp-server-atlassian-jira/commit/122a05d7eddd86339918e81755ff692663b0ee25)) Low5/17/2025
v1.33.0# [1.33.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.32.2...v1.33.0) (2025-05-17) ### Bug Fixes * remove all mocks from tests to ensure all tests run against live APIs ([da0256b](https://github.com/aashari/mcp-server-atlassian-jira/commit/da0256b4840beaad0ee0808cf926d5fa77716d57)) ### Features * Add visual status and priority indicators to Jira issue display ([feae94f](https://github.com/aashari/mcp-server-atlassian-jira/commit/feae94fdb12eca9077a8d58ba1091ad99ec08d4cLow5/17/2025
v1.32.2## [1.32.2](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.32.1...v1.32.2) (2025-05-16) ### Bug Fixes * clarify and validate orderBy parameter for jira_ls_comments tool ([a49124a](https://github.com/aashari/mcp-server-atlassian-jira/commit/a49124abc2d072f40831402da24993d89512b890)) Low5/16/2025
v1.32.1## [1.32.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.32.0...v1.32.1) (2025-05-16) ### Bug Fixes * Update jira_add_comment tool description to correctly state Markdown support ([039c287](https://github.com/aashari/mcp-server-atlassian-jira/commit/039c287e6d3b40abd36e4c1f108ccf370367f494)) Low5/16/2025
v1.32.0# [1.32.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.31.0...v1.32.0) (2025-05-16) ### Bug Fixes * remove unused import in validation test ([8b0bd7d](https://github.com/aashari/mcp-server-atlassian-jira/commit/8b0bd7d9296007acfbfaab61a411d852c9b96890)) ### Features * add centralized validation utility ([487e76d](https://github.com/aashari/mcp-server-atlassian-jira/commit/487e76df309bcf16ca536ad87fb61f4a4f2fb35a)) Low5/16/2025
v1.31.0# [1.31.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.30.2...v1.31.0) (2025-05-16) ### Bug Fixes * improve error handling and fix TypeScript issues in tests ([c70aac7](https://github.com/aashari/mcp-server-atlassian-jira/commit/c70aac73ebcc8a76a1ddb086e66f6ad44dcf4453)) ### Features * standardize and enhance error handling for Jira API ([ab970ea](https://github.com/aashari/mcp-server-atlassian-jira/commit/ab970eab9898c0a43a5c8d79386355547a5a4f9f)) Low5/16/2025
v1.30.2## [1.30.2](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.30.1...v1.30.2) (2025-05-14) ### Bug Fixes * remove Dockerfile and smithery.yaml ([fae1600](https://github.com/aashari/mcp-server-atlassian-jira/commit/fae160046f8197d599acb9a464a79fd82066d931)) Low5/14/2025
v1.30.1## [1.30.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.30.0...v1.30.1) (2025-05-14) ### Bug Fixes * Make reporter field nullable in IssueFieldsSchema to handle null values in API response ([5f94946](https://github.com/aashari/mcp-server-atlassian-jira/commit/5f9494696350f5ffcc26ba14176baefa4d1ba69b)) Low5/14/2025
v1.30.0# [1.30.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.29.0...v1.30.0) (2025-05-14) ### Features * include error metadata in tool responses for enhanced AI context ([6f99658](https://github.com/aashari/mcp-server-atlassian-jira/commit/6f99658279590d9f3d1e2002b5d4477d77b7ca71)) Low5/14/2025
v1.29.0# [1.29.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.28.3...v1.29.0) (2025-05-14) ### Features * enhance error handling with vendor propagation and enriched CLI/Tool formatting ([8ec1278](https://github.com/aashari/mcp-server-atlassian-jira/commit/8ec12788b8bfe1462763b3ad33186bfa2e4c8ff5)) Low5/14/2025
v1.28.3## [1.28.3](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.28.2...v1.28.3) (2025-05-13) ### Bug Fixes * update dependencies ([cc8caf1](https://github.com/aashari/mcp-server-atlassian-jira/commit/cc8caf1b16b90d8ed7630cd69d52b18da8255a93)) Low5/13/2025
v1.28.2## [1.28.2](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.28.1...v1.28.2) (2025-05-07) ### Bug Fixes * add markdown table support for Jira comments ([faa6d14](https://github.com/aashari/mcp-server-atlassian-jira/commit/faa6d142df33df60878a52c8e449cec4f1b022ff)) Low5/7/2025
v1.28.1## [1.28.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.28.0...v1.28.1) (2025-05-07) ### Performance Improvements * Update dependencies ([26efedb](https://github.com/aashari/mcp-server-atlassian-jira/commit/26efedbff2fcf0e2827761acfdfa25b1abc4b808)) Low5/7/2025
v1.28.0# [1.28.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.27.2...v1.28.0) (2025-05-06) ### Features * enhance Markdown to ADF conversion with support for lists, blockquotes, and more formatting ([c8fb137](https://github.com/aashari/mcp-server-atlassian-jira/commit/c8fb137a4f8fa260fa65c512ac091def4d4c8c0f)) * improve Markdown to ADF conversion with proper headings and newline handling ([5705218](https://github.com/aashari/mcp-server-atlassian-jira/commit/5705218b3c309cc15932f0Low5/6/2025
v1.27.2## [1.27.2](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.27.1...v1.27.2) (2025-05-06) ### Bug Fixes * implement Markdown to ADF conversion for Jira comments ([9ae25e4](https://github.com/aashari/mcp-server-atlassian-jira/commit/9ae25e4fb8fc24b3e797de79774b1aac34f48671)) Low5/6/2025
v1.27.1## [1.27.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.27.0...v1.27.1) (2025-05-06) ### Performance Improvements * Update dependencies ([96e87da](https://github.com/aashari/mcp-server-atlassian-jira/commit/96e87da2ce9b9839ee0285da6237637cfd6b55f1)) Low5/6/2025
v1.27.0# [1.27.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.11...v1.27.0) (2025-05-06) ### Features * Add support for Jira issue comments ([09ea696](https://github.com/aashari/mcp-server-atlassian-jira/commit/09ea696915329882eae4d17422154820e9966371)) Low5/6/2025
v1.26.11## [1.26.11](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.10...v1.26.11) (2025-05-06) ### Performance Improvements * Update dependencies ([69bcb0e](https://github.com/aashari/mcp-server-atlassian-jira/commit/69bcb0e46f0cfa898fed1509ebe566b33f161c29)) Low5/6/2025
v1.26.10## [1.26.10](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.9...v1.26.10) (2025-05-06) ### Bug Fixes * Revert back the index.ts and package.json ([4b37d55](https://github.com/aashari/mcp-server-atlassian-jira/commit/4b37d551c7c841b2a2e3d5385f07923a5a1f0a3f)) Low5/6/2025
v1.26.9## [1.26.9](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.8...v1.26.9) (2025-05-06) ### Bug Fixes * improve main module detection for npx compatibility ([2bc887a](https://github.com/aashari/mcp-server-atlassian-jira/commit/2bc887afe83be86a4b160992ef4e8a0d61ff5977)) Low5/6/2025
v1.26.8## [1.26.8](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.7...v1.26.8) (2025-05-06) ### Bug Fixes * improve main module detection for npx compatibility ([fc3e544](https://github.com/aashari/mcp-server-atlassian-jira/commit/fc3e54420ec6b873563e7fd058a93e277a2e3990)) Low5/6/2025
v1.26.7## [1.26.7](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.6...v1.26.7) (2025-05-05) ### Bug Fixes * revert to working server version that stays running ([39bbb85](https://github.com/aashari/mcp-server-atlassian-jira/commit/39bbb8559728da68f7a729117054f7796d75dab4)) Low5/5/2025
v1.26.6## [1.26.6](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.5...v1.26.6) (2025-05-05) ### Bug Fixes * improve signal handling for npx support ([5fff0a3](https://github.com/aashari/mcp-server-atlassian-jira/commit/5fff0a33023a486022b21e336fc112b0d09b4f71)) Low5/5/2025
v1.26.5## [1.26.5](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.4...v1.26.5) (2025-05-05) ### Bug Fixes * Remove explicit exit after CLI execution in index.ts ([b747d4a](https://github.com/aashari/mcp-server-atlassian-jira/commit/b747d4a393413eb6cc6688ab42b8b5ccee35aedb)) Low5/5/2025
v1.26.4## [1.26.4](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.3...v1.26.4) (2025-05-05) ### Bug Fixes * Apply cross-platform compatibility improvements from boilerplate ([c1a82bd](https://github.com/aashari/mcp-server-atlassian-jira/commit/c1a82bde1abdfca22e051ce3b6e81dfd9361c467)) ### Performance Improvements * Update dependencies ([0fe29fc](https://github.com/aashari/mcp-server-atlassian-jira/commit/0fe29fca708a15d762ef893e029720266077389c)) Low5/5/2025
v1.26.3## [1.26.3](https://github.com/aashari/mcp-server-atlassian-jira/compare/v1.26.2...v1.26.3) (2025-05-04) ### Performance Improvements * Update dependencies ([48fb73e](https://github.com/aashari/mcp-server-atlassian-jira/commit/48fb73eb29d0da5ff8ff2c2cca194a2456f4a576)) Low5/4/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

vibe-replayTurn AI coding sessions into animated, interactive web replaysv0.2.3
oh-my-piâŒĨ AI Coding agent for the terminal — hash-anchored edits, optimized tool harness, LSP, Python, browser, subagents, and morev15.9.5
mcpickClaude Code extension manager — MCP servers, plugins (skills, hooks, agents), and marketplacesmain@2026-06-03
claude-app-serverProvide a JSON-RPC 2.0 server that enables Claude Code access via stdio or WebSocket without requiring an API key or extra authentication.main@2026-06-02
terminal-mcpđŸ–Ĩī¸ Enhance your terminal interactions by allowing AI to see and control your session for real-time debugging and automation.main@2026-06-01

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!