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?"
- 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
Get up and running in 2 minutes:
Generate a Jira API Token:
- Go to Atlassian API Tokens
- Click Create API token
- Give it a name like "AI Assistant"
- Copy the generated token immediately (you won't see it again!)
# 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:
- "List all projects I have access to"
- "Show me details about the DEV project"
- "What projects contain the word 'Platform'?"
- "Get project information for PROJ-123"
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"
Ask your AI assistant:
- "Get full details about issue PROJ-456 including comments"
- "Show me the development information for PROJ-789"
- "What's the current status and assignee of PROJ-123?"
- "Display all comments on the authentication bug"
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"
- "Add testing results to issue PROJ-789"
Ask your AI assistant:
- "What are the available statuses in the DEV project?"
- "Show me all possible workflow states"
- "What status options are available for project MOBILE?"
- "List the workflow states for issue transitions"
-
Check your API Token permissions:
- Go to Atlassian API Tokens
- Make sure your token is still active and hasn't expired
-
Verify your site name format:
- If your Jira URL is
https://mycompany.atlassian.net
- Your site name should be just
mycompany
- If your Jira URL is
-
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:
- Make sure you have access to the project in your browser
- Some projects may be restricted to certain users
-
Try different search terms:
- Use project keys instead of project names
- Try broader search criteria
-
Check issue permissions:
- You can only access issues you have permission to view
- Ask your admin if you should have access to specific projects
- Restart Claude Desktop after updating the config file
- Check the status bar for the "π jira" indicator
- Verify config file location:
- macOS:
~/.claude/claude_desktop_config.json
- Windows:
%APPDATA%\\Claude\\claude_desktop_config.json
- macOS:
If you're still having issues:
- Run a simple test command to verify everything works
- Check the GitHub Issues for similar problems
- Create a new issue with your error message and setup details
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)
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:
- URL:
https://mycompany.atlassian.net
β Site name:mycompany
- URL:
https://acme-corp.atlassian.net
β Site name:acme-corp
Any AI assistant that supports the Model Context Protocol (MCP):
- Claude Desktop (most popular)
- Cursor AI
- Continue.dev
- Many others
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
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:
- Check the troubleshooting section above - most common issues are covered there
- Visit our GitHub repository for documentation and examples: github.com/aashari/mcp-server-atlassian-jira
- Report issues at GitHub Issues
- Start a discussion for feature requests or general questions
Made with β€οΈ for teams who want to bring AI into their project management workflow.