
Atlassian Jira
STDIOMCP server for Atlassian Jira Cloud integration enabling AI systems to interact with projects and issues
MCP server for Atlassian Jira Cloud integration enabling AI systems to interact with projects and issues
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.
✅ 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"
✅ Check workflow status: "What are the available statuses for the DEV project?"
Get up and running in 2 minutes:
Generate a Jira API Token:
# Set your credentials export ATLASSIAN_SITE_NAME="your-company" # for your-company.atlassian.net export ATLASSIAN_USER_EMAIL="[email protected]" export ATLASSIAN_API_TOKEN="your_api_token" # List your Jira projects npx -y @aashari/mcp-server-atlassian-jira ls-projects # Get details about a specific project npx -y @aashari/mcp-server-atlassian-jira get-project --project-key-or-id DEV # Search for issues npx -y @aashari/mcp-server-atlassian-jira ls-issues --project-key-or-id DEV
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": "[email protected]", "ATLASSIAN_API_TOKEN": "your_api_token" } } } }
Restart Claude Desktop, and you'll see "🔗 jira" in the status bar.
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.
Create ~/.mcp/configs.json
for system-wide configuration:
{ "jira": { "environments": { "ATLASSIAN_SITE_NAME": "your-company", "ATLASSIAN_USER_EMAIL": "[email protected]", "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"
.
Ask your AI assistant:
Ask your AI assistant:
Ask your AI assistant:
Ask your AI assistant:
Ask your AI assistant:
Check your API Token permissions:
Verify your site name format:
https://mycompany.atlassian.net
mycompany
Test your credentials:
# Test your credentials work npx -y @aashari/mcp-server-atlassian-jira ls-projects
Check project key spelling:
# List your projects to see the correct keys npx -y @aashari/mcp-server-atlassian-jira ls-projects
Verify access permissions:
Try different search terms:
Check issue permissions:
~/.claude/claude_desktop_config.json
%APPDATA%\\Claude\\claude_desktop_config.json
If you're still having issues:
Your Atlassian account needs:
Currently, this tool only supports Jira Cloud. Jira Server/Data Center support may be added in future versions.
Your site name is the first part of your Jira URL:
https://mycompany.atlassian.net
→ Site name: mycompany
https://acme-corp.atlassian.net
→ Site name: acme-corp
Any AI assistant that supports the Model Context Protocol (MCP):
Yes! This tool:
Yes! When you don't specify a project, searches will look across all projects you have access to. You can also use JQL queries for advanced cross-project searches.
Need help? Here's how to get assistance:
Made with ❤️ for teams who want to bring AI into their project management workflow.