Jira MCP Server
Provides tools for interacting with Jira, enabling fetching issues via JQL queries and creating issues programmatically with support for project, summary, description, and issue type parameters.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Jira MCP ServerShow all issues assigned to me in project DEV"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Jira MCP Server
Node.js-based Jira MCP (Model Context Protocol) server with TypeScript support.
Features
getIssuesByJQL: Fetch Jira issues using JQL queries
createIssue: Create new Jira issues programmatically
Automatic retry logic for transient failures
TypeScript type safety
Secure authentication via environment variables
Related MCP server: AI-Powered Jira MCP Server
Prerequisites
Node.js v20.x or higher
Jira Cloud account or Jira Data Center with API access
Jira API token
Installation
npm installConfiguration
Copy
.env.exampleto.env:cp .env.example .envUpdate
.envwith your Jira credentials:JIRA_HOST=your-domain.atlassian.net JIRA_EMAIL=your-email@example.com JIRA_API_TOKEN=your_api_token_here JIRA_DEFAULT_PROJECT= (optional, default project key for issue creation)Create your API token at: https://id.atlassian.com/manage-profile/security/api-tokens
Usage
Development
npm run devProduction Build
npm run build
npm startConfiguration for Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"jira-mcp": {
"command": "node",
"args": ["/path/to/jira-mcp/dist/index.js"],
"env": {
"JIRA_HOST": "your-domain.atlassian.net",
"JIRA_EMAIL": "your-email@example.com",
"JIRA_API_TOKEN": "your_api_token",
"JIRA_DEFAULT_PROJECT": "PROJECT_KEY"
}
}
}
}Available Tools
getIssuesByJQL
Fetch Jira issues using a JQL query.
Parameters:
jql(string, required): JQL string (e.g., "project = TEST")maxResults(number, optional): Limit results (default: 50)
Example:
"Show all issues assigned to me in project DEV"createIssue
Create a new Jira issue.
Parameters:
projectKey(string, optional): Project key (e.g., "TEST"). If not provided, uses JIRA_DEFAULT_PROJECTsummary(string, required): Issue titledescription(string, required): Issue detailsissueType(string, optional): Issue type (default: "Task")
Example:
"Create a Jira issue titled 'Fix login bug in API' in the project DEV"
"Create a Jira issue titled 'Fix login bug in API' without specifying a project (uses default)"Development
# Build TypeScript
npm run build
# Run linter (add to package.json if needed)
npm run lint
# Run type check
npm run typecheckLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ysofologis/JiraMcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server