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 "Deploy 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 deployed
Maintenance
Related MCP Connectors
Connect to Atlassian Jira, Confluence, Loom, and more to search, create, and manage your work.
Manage projects, tasks, time tracking, and team collaboration through natural language.
Manage dillie projects, tasks, and sprints; look up members and search platform documentation.
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI systems to interact with JIRA through natural language, allowing users to retrieve issue details, create new tickets, search using JQL, and access project information.3-
- -licenseNot gradedqualityDmaintenanceEnables natural language interactions with Jira for creating issues, managing boards, searching tickets, and handling project operations. Supports conversational AI workflows with smart field detection and multi-turn conversations.-
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search, view, create, and update JIRA issues using natural language commands and JQL queries.65Apache 2.0
- AlicenseNot gradedqualityDmaintenanceProvides integration with Jira and Confluence, enabling issue and page management via natural language.24MIT