Jira-Oauth-Token-Generator
Verified Safeby dongitran
Overview
Generate OAuth credentials for Jira MCP Server to enable AI tools like Claude and Cursor to interact with Jira by simplifying the complex OAuth 2.0 flow into a click-and-copy process.
Installation
npm startEnvironment Variables
- JIRA_ATLASSIAN_CLIENT_ID
- JIRA_ATLASSIAN_CLIENT_SECRET
- JIRA_REDIRECT_URI
- PORT
- ALLOWED_WORKSPACE
Security Notes
The server implements several good security practices: using UUID for CSRF protection ('state' parameter), deleting session data after use, loading sensitive credentials from environment variables, and offering optional workspace validation for enterprise use. It is stateless and does not store sensitive data persistently. The generated tokens are displayed in the browser for manual copy-pasting, which is inherent to its function, but users are explicitly warned about handling them securely. No 'eval' or malicious patterns were found.
Similar Servers
mcp-xray
A lightweight server that bridges the MCP protocol with the Atlassian Jira Xray API, exposing Xray functionality via FastMCP for integration with AI language models or other clients.
springai-mcp-gateway
An OAuth 2.1 secured Spring AI MCP gateway enabling ChatGPT Connectors to interact with local development tools via a streamable HTTP endpoint.
jayrah
A CLI and TUI for managing Jira issues directly from the terminal, including an MCP server for AI tool integration and a local web UI.
MCP-Council
Automates the conversion of any REST API into a Model Context Protocol (MCP) server, enabling AI assistants to interact with external APIs through a standardized interface.