home / mcp / jira jql tool for claude mcp server

Jira JQL Tool for Claude MCP Server

Provides an MCP endpoint to query Jira using JQL from Claude, enabling seamless Jira data access within conversations.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "amiralamox-mcp-servers": {
      "command": "[path_to_project]/.venv/bin/python",
      "args": [
        "[path_to_project]/server.py"
      ]
    }
  }
}

This MCP server lets Claude interact with Jira by sending JQL queries through the Model Control Protocol, enabling rapid data access and automated workflows without leaving your chat interface.

How to use

You connect your MCP client to the Jira JQL Tool MCP Server to run Jira queries from Claude. Start the local server, then configure Claude Desktop to launch the Python process that runs server.py. Once connected, you can issue Jira JQL queries through Claude and receive results in your chat.

How to install

Prerequisites: Python 3.12 and a working Python virtual environment.

# Create project directory
git clone [email protected]:amiralamox/mcp-servers.git && cd jira_tool

# Create Python virtual environment (Python 3.12)
python3.12 -m venv .venv

# Activate virtual environment
source .venv/bin/activate

# Install required packages
pip install -r requirements.txt

# Test server (optional)
python server.py  # Run briefly to verify it works, then stop

Configuration and usage notes

Configure your Claude Desktop to connect to the Jira JQL Tool MCP Server by setting up a local stdio connection that launches the Python runtime and the server script.

{
  "mcpServers": {
   "jira-jql-tool": {
    "command": "[path_to_project]/.venv/bin/python",
    "args": [
      "[path_to_project]/server.py"
    ]
   }
  }
}