Jira Integration for Release Notes
This document explains how to access Jira from Cursor to create release notes from Jira issues with fix version filters.Current Status
You have an MCP Atlassian server configured at~/.cursor/mcp.json, but it’s currently experiencing dependency issues with Pydantic:
Available Solutions
Option 1: Use the Node.js Scripts (Recommended for Quick Use)
Two scripts are provided in the/scripts directory:
1. List Available Fix Versions
2. Generate Release Notes from Fix Version
- Fetch all issues with the specified fix version
- Group them by type (Features, Improvements, Bug Fixes)
- Display them in an organized format
- Generate an MDX template for your release notes
- Issue summaries and descriptions
- Status, priority, and components
- Links to Jira issues
- Ready-to-use MDX template
Option 2: Fix the MCP Atlassian Server
The MCP server integration would allow you to query Jira directly from Cursor’s chat interface.Current Configuration
Your MCP configuration (~/.cursor/mcp.json):
Steps to Fix
- Update the mcp-atlassian package:
- Alternative: Use a specific version:
~/.cursor/mcp.json to pin a working version:
- Restart Cursor after making changes
- Check the logs:
Option 3: Manual Jira API Queries
You can also use curl or any HTTP client to query Jira directly:Troubleshooting
Error: “Site temporarily unavailable”
This could mean:- Jira is temporarily down
- Authentication credentials need to be refreshed
- API endpoint URL needs adjustment
- Check if you can access https://flowxai.atlassian.net in your browser
- Verify your API token is still valid
- Generate a new API token if needed: https://id.atlassian.com/manage-profile/security/api-tokens
MCP Server Won’t Start
Solution:- Check the logs:
tail -50 ~/.cursor/MCP:\ user-mcp-atlassian.log - Clear the UV cache:
rm -rf ~/.cache/uv/ - Restart Cursor
API Token Expired
Solution:- Go to: https://id.atlassian.com/manage-profile/security/api-tokens
- Create a new API token
- Update the token in:
~/.cursor/mcp.json(for MCP server)/scripts/jira-release-notes.js(for Node.js scripts)
Usage Examples
Example 1: Generate Release Notes for Version 5.2.1
Example 2: Find All Unreleased Versions
Example 3: Copy Output to Clipboard (macOS)
Next Steps
- Test the scripts: Try running
node scripts/jira-list-versions.jsto verify connectivity - Generate sample release notes: Run
node scripts/jira-release-notes.js "<version>"with a known version - Fix MCP server (optional): If you want Cursor integration, follow the MCP server fix steps above
Security Note
⚠️ Important: The scripts contain your Jira API token. Do not commit these files to version control if you’ve added your token. Consider using environment variables instead:Support
If you continue experiencing issues:- Check the Jira REST API documentation
- Verify your Jira Cloud instance is accessible
- Test authentication with a simple curl command
- Check if your API token has the required permissions

