
Jira MCP Server
Enables fetching and viewing Jira issue details directly through Claude Desktop using secure API token authentication. Provides comprehensive issue information including status, assignee, priority, and descriptions in both human-readable and structured formats.
README
MCP Jira Server
A Model Context Protocol (MCP) server that integrates Jira with Claude Desktop, allowing you to fetch and view Jira issue details directly through Claude.
Features
- 🔍 Get Jira Issue Details: Fetch comprehensive information about any Jira issue by its key
- 🔐 Secure Authentication: Uses Jira API tokens for secure access
- 🎯 Structured Data: Returns both human-readable and structured JSON data
- 🚀 Claude Desktop Integration: Seamlessly works with Claude Desktop via MCP protocol
Prerequisites
- Node.js (v18 or higher)
- Claude Desktop application
- Jira instance with API access
- Jira API token
Installation
-
Clone the repository
git clone https://github.com/imrnbeg/jira-mcp.git cd jira-mcp
-
Install dependencies
npm install
-
Build the project
npm run build
Configuration
1. Create Environment File
Create a .env
file in the project root with your Jira credentials:
# .env
JIRA_URL=https://yourcompany.atlassian.net
JIRA_EMAIL=your.email@company.com
JIRA_API_TOKEN=your_api_token_here
How to get your Jira API token:
- Go to Atlassian Account Settings
- Click "Create API token"
- Give it a label (e.g., "MCP Server")
- Copy the generated token
2. Update Server Path (Important!)
⚠️ CRITICAL: You must update the .env
file path in the server code to match your system.
Edit src/server.ts
and update line 8:
// Change this path to match your system
loadEnvFile('/Users/imranbeg/mcp-get-server/.env');
For different systems:
- macOS/Linux:
/full/path/to/your/jira-mcp/.env
- Windows:
C:\\full\\path\\to\\your\\jira-mcp\\.env
3. Rebuild After Path Update
After updating the path, rebuild the project:
npm run build
Claude Desktop Setup
1. Locate Claude Desktop Config
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
2. Add MCP Server Configuration
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"mcp-jira-server": {
"command": "node",
"args": ["/full/path/to/your/jira-mcp/dist/server.js"],
"cwd": "/full/path/to/your/jira-mcp"
}
}
}
⚠️ Update the paths to match your system:
- Replace
/full/path/to/your/jira-mcp
with your actual project path - Use forward slashes (
/
) even on Windows
3. Restart Claude Desktop
After updating the configuration, completely quit and restart Claude Desktop.
Usage
Once configured, you can use these example prompts in Claude Desktop:
Basic Issue Lookup
Get details for Jira issue PROJ-123
Show me information about ticket TASK-456
What's the status of issue BUG-789?
Detailed Issue Information
Get comprehensive details for Jira issue PROJ-123 including description, assignee, and priority
Show me the full details for ticket TASK-456 with all available information
Multiple Issues
Get details for these Jira issues: PROJ-123, TASK-456, BUG-789
Issue Status Check
What's the current status and assignee for issue PROJ-123?
Check the priority and due date for ticket TASK-456
Available Tools
get_jira_issue
Fetches detailed information about a Jira issue.
Parameters:
issueKey
(string): The Jira issue key (e.g., PROJ-123, TASK-456)
Returns:
- Issue summary, description, status, assignee, reporter
- Priority, issue type, creation and update dates
- Direct link to the issue in Jira
- Structured JSON data for programmatic access
Development
Running in Development Mode
npm run dev
Building for Production
npm run build
Type Checking
npm run typecheck
Troubleshooting
Server Not Loading Environment Variables
- Check the path in
src/server.ts
- Make sure it points to your actual.env
file location - Rebuild the project after changing the path:
npm run build
- Verify
.env
file exists and contains valid credentials
Claude Desktop Not Connecting
- Check the config file paths - Ensure all paths in
claude_desktop_config.json
are correct - Restart Claude Desktop completely
- Check Claude Desktop logs for connection errors
Jira API Errors
- Verify your API token is valid and not expired
- Check your Jira URL format (should include
https://
) - Ensure your account has access to the Jira instance
Project Structure
jira-mcp/
├── src/
│ ├── server.ts # Main MCP server implementation
│ └── load-env.ts # Custom environment loader
├── dist/ # Compiled JavaScript files
├── .env # Environment variables (create this)
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # This file
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- Submit a pull request
License
ISC License
Support
For issues and questions:
- Check the troubleshooting section above
- Review the MCP documentation
- Open an issue on GitHub
Happy Jira integration with Claude! 🚀
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.