jira-mcp-server
A lightweight MCP server that exposes Jira issue operations (get, search, create) as tools for AI clients like Claude.
README
<p align="center"> <img src="assets/logo.svg" alt="Jira MCP Server logo" width="480" /> </p>
<p align="center"> A lightweight <a href="https://modelcontextprotocol.io">Model Context Protocol (MCP)</a> server that exposes Jira issue operations as tools for MCP-compatible AI clients (Claude Desktop, Claude Code, etc.). </p>
<p align="center"> <img alt="Node.js" src="https://img.shields.io/badge/node-%3E%3D18-339933?logo=node.js&logoColor=white" /> <img alt="License" src="https://img.shields.io/badge/license-ISC-blue" /> <img alt="MCP" src="https://img.shields.io/badge/MCP-stdio-6E56CF" /> </p>
Overview
jira-mcp-server runs as a local stdio-based MCP server. It connects to a Jira Cloud instance via the REST API and exposes three tools that an MCP client can call: fetching an issue, searching issues with JQL, and creating new issues.
Features
- š Get issue ā fetch a single Jira issue by key
- š Search issues ā run arbitrary JQL queries
- ā Create issue ā create a new issue in a project
- š Implements the MCP
tools/listandtools/callprotocol over stdio - āļø Configuration via environment variables (
.env)
Prerequisites
- Node.js 18 or later
- A Jira Cloud site and an Atlassian API token
- An MCP-compatible client (e.g. Claude Desktop, Claude Code)
Installation
git clone <this-repo-url>
cd jira-mcp-server
npm install
Configuration
Copy the example environment file and fill in your Jira credentials:
cp .env.example .env
| Variable | Description | Example |
|---|---|---|
JIRA_EMAIL |
The email address associated with your Atlassian account | you@example.com |
JIRA_API_TOKEN |
An Atlassian API token generated from your account security settings | abcd1234... |
JIRA_BASE_URL |
The base REST API URL for your Jira site | https://your-domain.atlassian.net/rest/api/3 |
Never commit your
.envfile. It is already excluded via.gitignore.
Running the server
node src/server.js
The server communicates over stdio, so it's designed to be launched by an MCP client rather than run standalone in a terminal for interactive use.
Connecting from Claude Desktop
Add an entry to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"jira": {
"command": "node",
"args": ["C:\\path\\to\\jira-mcp-server\\src\\server.js"],
"env": {
"JIRA_EMAIL": "you@example.com",
"JIRA_API_TOKEN": "your-api-token",
"JIRA_BASE_URL": "https://your-domain.atlassian.net/rest/api/3"
}
}
}
}
Restart Claude Desktop and the jira tools will become available in the tool picker.
Available tools
| Tool | Description | Parameters |
|---|---|---|
get_issue |
Get a Jira issue by key | key (string, required) ā e.g. PROJ-123 |
search_issues |
Search Jira issues using JQL | jql (string, required) ā a valid JQL query string |
create_issue |
Create a new Jira issue | projectKey (string, required), summary (string, required), description (string, optional) |
Project structure
jira-mcp-server/
āāā assets/
ā āāā logo.svg # Project logo
āāā src/
ā āāā server.js # MCP server entry point (tool routing)
ā āāā tools.js # Tool definitions / input schemas
ā āāā jiraclient.js # Jira REST API client
āāā .env.example # Sample environment configuration
āāā package.json
āāā README.md
Troubleshooting
- 401 Unauthorized ā verify
JIRA_EMAILandJIRA_API_TOKENare correct and that the token hasn't expired. - 404 Not Found ā check that
JIRA_BASE_URLpoints to the correct Jira Cloud REST API base (/rest/api/3). - No output from the server ā the server communicates over stdio; run it via an MCP client rather than expecting interactive terminal output.
License
Distributed under the ISC License.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.