Best for
- Teams using Jira for project management
- Users who want to manage tasks via natural language with AI assistants
- Developers needing to automate common PM operations like assignment and status updates
This MCP server simplifies Jira operations through natural language, suitable for teams using Jira. It provides comprehensive issue management features, but requires valid credentials and attention to delete operation risks.
This is an MCP server that enables interaction with Jira using natural language, allowing users to retrieve information and modify projects. It supports project creation and configuration, issue and subtask management, issue linking and dependencies, and automated issue workflows.
For Claude Desktop, add the mcpServers entry to the configuration file (claude_desktop_config.json).
{
"mcpServers": {
"jira-server": {
"command": "node",
"args": [
"/path/to/jira-server/build/index.js"
],
"cwd": "/path/to/jira-server",
"env": {
"JIRA_HOST": "your-jira-instance.atlassian.net",
"JIRA_EMAIL": "[email protected]",
"JIRA_API_TOKEN": "your-api-token",
"JIRA_AUTH_TYPE": "basic"
}
}
}
}