jklz/jira-rest-mcp-server
Platform-specific configuration:
{
"mcpServers": {
"jira-rest-mcp-server": {
"command": "npx",
"args": [
"-y",
"jira-rest-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server that provides Jira integration for Claude Code and other MCP-compatible clients. Interact with Jira issues, projects, and workflows directly from your AI assistant.
This server was created as an alternative to the official Atlassian MCP endpoint (https://mcp.atlassian.com/v1/sse). Some MCP clients, including Claude Code, experience authentication issues with the SSE-based endpoint where the connection can lose authentication state without the client detecting it, causing subsequent requests to fail silently or with confusing errors.
This REST-based implementation provides:
Choose your client below:
<details> <summary><b>Claude Code (CLI)</b></summary>
This keeps secrets out of your committed codebase.
Add to .claude/settings.json in your project:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "jira-rest-mcp-server"],
"env": {
"JIRA_BASE_URL": "${JIRA_BASE_URL}",
"JIRA_EMAIL": "${JIRA_EMAIL}",
"JIRA_API_TOKEN": "${JIRA_API_TOKEN}"
}
}
}
}Add your credentials to .claude/settings.local.json (add this file to .gitignore):
Loading reviews...