drio
Open app

JIRA MCP Server

Source

the mcp server with jira integrates

Catalog onlyCatalog onlySTDIO

Overview

The JIRA MCP Server integrates JIRA services with MCP, allowing you to fetch JIRA content through MCP for use with LLM. This is an early version of the project aimed at enhancing the interaction between JIRA and MCP.

To use the JIRA MCP Server, you need to configure the required environment variables such as JIRA_API_KEY, JIRA_EMAIL, and JIRA_URL. After configuration, you can run the server using the command go run main.go or compile it into a binary for your platform.

  • Integration of JIRA services with MCP. - Fetching JIRA content for use with LLM. - Simple setup and running process.
  1. Fetching JIRA issues and data for analysis.
  2. Integrating JIRA content into applications that utilize LLM.
  3. Enhancing project management workflows by connecting JIRA with other tools.

Add to your AI client

Use these steps to connect JIRA MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "jira-mcp-server-blue7wings": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jira-mcp-server-blue7wings"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "jira-mcp-server-blue7wings": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jira-mcp-server-blue7wings"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "jira-mcp-server-blue7wings": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jira-mcp-server-blue7wings"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "jira-mcp-server-blue7wings": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jira-mcp-server-blue7wings"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "jira-mcp-server-blue7wings": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jira-mcp-server-blue7wings"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "jira-mcp-server-blue7wings": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jira-mcp-server-blue7wings"
      ]
    }
  }
}

FAQ

What are the required environment variables?

You need to set JIRA_API_KEY, JIRA_EMAIL, and JIRA_URL to run the server.

How do I generate the JIRA_API_KEY?

You can generate the JIRA_API_KEY at the Atlassian API tokens page.

Can I run the server on any platform?

Yes, you can compile the server into a binary for any platform.