Provides system time integration with customizable date and time formatting and locale support.
Allows access to Jira issues directly from the IDE, including viewing assigned issues, getting detailed information on specific issues, and converting Jira issues into local tasks.
๐ฏ JIRA MCP Server
โจ Features
๐ฏ Complete JIRA Integration Suite
Issue Management: Full CRUD operations for JIRA issues with comprehensive field support
Project & Board Discovery: Browse projects, boards, and sprints with advanced filtering
Smart Search: JQL and beginner-friendly search with rich formatting
Comment System: Access and manage issue comments with progressive disclosure
๐๏ธ Enterprise-Grade Architecture (New in v0.5.0)
Modular Design: Feature-based architecture with clear separation of concerns
Robust HTTP Client: Refactored with dedicated utility classes for reliability
Comprehensive Testing: 822+ tests ensuring stability and reliability
Type Safety: Full TypeScript strict mode with enhanced error handling
๐ Powerful Search & Discovery
Search issues using JQL (JIRA Query Language) or beginner-friendly parameters
Project, board, and sprint discovery with metadata and filtering
Rich markdown formatting with issue previews and direct navigation links
Advanced comment retrieval with author filtering and date ranges
๐ Advanced Issue Management
Create, update, and transition issues with comprehensive field support
Time tracking, worklog management, and custom field support
ADF (Atlassian Document Format) parsing for rich content display
Array operations for labels, components, and versions
Related MCP server: MCP Server for Cursor
๐ What's New in v0.5.0
๐๏ธ Major Architecture Overhaul
Complete code reorganization with modular, domain-driven architecture
HTTP client refactoring with dedicated utility classes for improved reliability
Critical bug fix for malformed JIRA API URLs that prevented proper communication
๐งช Enhanced Testing & Quality
95+ new tests added for HTTP client utilities and edge cases
822 total tests ensuring comprehensive coverage and stability
Zero linting warnings with enhanced Biome integration
๐ง Technical Improvements
Enhanced error handling with better classification and actionable messages
Improved logging with structured debug information and performance monitoring
Type safety enhancements with strict TypeScript checking throughout
๐ Performance & Reliability
Optimized HTTP requests with better connection management
Enhanced error recovery with improved retry logic and timeout handling
Backward compatibility maintained - seamless upgrade from v0.4.x
๐ Quick Start
Installation
Add this configuration to your MCP client:
Development Setup
For local development and testing:
Configuration
Create a .env file with the following variables:
๐ Important Note About JIRA API Tokens
A JIRA API token can be generated at Atlassian API Tokens
Tokens may contain special characters, including the
=signPlace the token on a single line in the
.envfileDo not add quotes around the token value
Paste the token exactly as provided by Atlassian
๐งฐ Available Tools
Core JIRA Tools
Tool | Description | Parameters | Returns |
| Retrieves all issues assigned to you | None | Markdown-formatted list of issues |
| Gets detailed information about a specific issue |
: Issue key (e.g., PD-312) | Markdown-formatted issue details |
| Retrieves comments for a specific issue with configurable options | See comment parameters below | Markdown-formatted comments |
| Create new JIRA issues with comprehensive field support | See issue creation parameters | Markdown-formatted creation result |
| Update existing issues with field changes and status transitions | See issue update parameters | Markdown-formatted update result |
| Retrieve and browse JIRA projects with filtering options | See project parameters | Markdown-formatted project list |
| Get JIRA boards (Scrum/Kanban) with advanced filtering | See board parameters | Markdown-formatted board list |
| Retrieve sprint information for agile project management | See sprint parameters | Markdown-formatted sprint list |
| Add time tracking entries to issues | See worklog parameters below | Markdown-formatted worklog result |
| Retrieve worklog entries for issues with date filtering | See worklog parameters below | Markdown-formatted worklog list |
| Update existing worklog entries | See worklog parameters below | Markdown-formatted update result |
| Delete worklog entries from issues | See worklog parameters below | Markdown-formatted deletion result |
| Get current authenticated user information | None | Markdown-formatted user details |
| Search JIRA issues with JQL or helper parameters | See search parameters below | Markdown-formatted search results |
Issue Creation Parameters
The jira_create_issue tool supports comprehensive issue creation:
Required:
projectKey: String - Project key (e.g.,"PROJ")issueType: String - Issue type (e.g.,"Task","Bug","Story")summary: String - Issue title/summary
Optional Fields:
description: String - Detailed description (supports ADF format)priority: String - Priority level ("Highest","High","Medium","Low","Lowest")assignee: String - Assignee username or emailreporter: String - Reporter username or emaillabels: Array - Labels to apply to the issuecomponents: Array - Component namesfixVersions: Array - Fix version namesaffectsVersions: Array - Affected version namestimeEstimate: String - Time estimate in JIRA format (e.g.,"2h","1d 4h")dueDate: String - Due date in ISO formatenvironment: String - Environment descriptioncustomFields: Object - Custom field values
Examples:
Issue Update Parameters
The jira_update_issue tool supports comprehensive issue updates:
Required:
issueKey: String - Issue key (e.g.,"PROJ-123")
Field Updates (any combination):
summary: String - Update issue titledescription: String - Update descriptionpriority: String - Change priorityassignee: String - Reassign issuereporter: String - Change reportertimeEstimate: String - Update time estimatetimeSpent: String - Log time spentdueDate: String - Update due dateenvironment: String - Update environment
Array Operations (add/remove/set):
labels: Object - Modify labels ({operation: "add|remove|set", values: ["label1", "label2"]})components: Object - Modify componentsfixVersions: Object - Modify fix versionsaffectsVersions: Object - Modify affected versions
Status Transitions:
status: String - Transition to new status (e.g.,"In Progress","Done")
Worklog:
worklog: Object - Add work log entry ({timeSpent: "2h", comment: "Fixed issue"})
Examples:
Project Parameters
The jira_get_projects tool supports project discovery:
Optional Parameters:
maxResults: Number (1-100, default: 50) - Limit number of resultsstartAt: Number (default: 0) - Pagination offsetexpand: Array - Additional fields to include (["description", "lead", "issueTypes", "url", "projectKeys"])
Examples:
Board Parameters
The jira_get_boards tool supports board management:
Optional Parameters:
maxResults: Number (1-100, default: 50) - Limit number of resultsstartAt: Number (default: 0) - Pagination offsettype: String - Board type ("scrum","kanban")name: String - Filter by board nameprojectKeyOrId: String - Filter by project
Examples:
Sprint Parameters
The jira_get_sprints tool supports sprint management:
Required:
boardId: Number - Board ID to get sprints from
Optional Parameters:
maxResults: Number (1-100, default: 50) - Limit number of resultsstartAt: Number (default: 0) - Pagination offsetstate: String - Sprint state ("active","closed","future")
Examples:
Worklog Parameters
The worklog tools support comprehensive time tracking:
jira_add_worklog:
Required:
issueKey: String - Issue key (e.g.,"PROJ-123")timeSpent: String - Time spent in JIRA format (e.g.,"2h","1d 4h","30m")
Optional:
comment: String - Comment describing the work donestarted: String - When work started (ISO date format, defaults to now)visibility: Object - Visibility settings ({type: "group", value: "jira-developers"})
jira_get_worklogs:
Required:
issueKey: String - Issue key (e.g.,"PROJ-123")
Optional:
startedAfter: String - Filter worklogs started after this date (ISO format)startedBefore: String - Filter worklogs started before this date (ISO format)
jira_update_worklog:
Required:
issueKey: String - Issue key (e.g.,"PROJ-123")worklogId: String - Worklog ID to update
Optional (any combination):
timeSpent: String - Update time spentcomment: String - Update commentstarted: String - Update start time
jira_delete_worklog:
Required:
issueKey: String - Issue key (e.g.,"PROJ-123")worklogId: String - Worklog ID to delete
Examples:
Comment Parameters
The jira_get_issue_comments tool supports progressive disclosure with these parameters:
Required:
issueKey: String - Issue key (e.g.,"PROJ-123")
Basic Options:
maxComments: Number (1-100, default: 10) - Maximum number of comments to retrieveorderBy: String ("created"or"updated", default:"created") - Sort order for comments
Advanced Options:
includeInternal: Boolean (default: false) - Include internal/restricted commentsauthorFilter: String - Filter comments by author name or emaildateRange: Object - Filter by date range:from: String (ISO date) - Start dateto: String (ISO date) - End date
Examples:
Search Parameters
The search_jira_issues tool supports two modes:
Expert Mode (JQL):
jql: Direct JQL query string (e.g.,"project = PROJ AND status = Open")
Beginner Mode (Helper Parameters):
assignedToMe: Boolean - Show only issues assigned to current userproject: String - Filter by project keystatus: String or Array - Filter by status(es) (e.g.,"Open"or["Open", "In Progress"])text: String - Search in summary and description fields
Common Options:
maxResults: Number (1-50, default: 25) - Limit number of resultsfields: Array - Specify which fields to retrieve (optional)
๐ ๏ธ Development Tools
Code Quality Tools
The project uses Biome for code formatting and linting, providing:
Fast, unified formatting and linting
TypeScript-first tooling
Zero configuration needed
Consistent code style enforcement
MCP Inspector
The MCP Inspector is a powerful tool for testing and debugging your MCP server.
The inspector automatically:
Loads environment variables from
.envCleans up occupied ports (5175, 3002)
Builds the project when needed
Starts the MCP server with your configuration
Launches the inspector UI
Visit the inspector at http://localhost:5175?proxyPort=3002
If you encounter port conflicts:
Debugging with the Inspector
The inspector UI allows you to:
View all available MCP capabilities
Execute tools and examine responses
Analyze the JSON communication
Test with different parameters
For more details, see the MCP Inspector GitHub repository.
Integration with Claude Desktop
Test your MCP server directly with Claude:
Build:
bun run build # You must build the project before running itConfigure Claude Desktop:
nano ~/Library/Application\ Support/Claude/claude_desktop_config.jsonAdd the MCP configuration:
{ "mcpServers": { "JIRA Tools": { "command": "node", "args": ["/absolute/path/to/your/project/dist/index.js"], "env": { "JIRA_USERNAME": "your-jira-username", "JIRA_API_TOKEN": "your-jira-api-token", "JIRA_HOST": "your-jira-host.atlassian.net" } } } }Restart Claude Desktop and test with:
Show me my assigned JIRA issues.
๐ Integration with Cursor IDE
โ ๏ธ Important: You must build the project with
bun run buildbefore integrating with Cursor IDE or Claude Desktop.
Add this MCP server to your Cursor IDE's MCP configuration:
๐ Project Structure
NPM Scripts
Command | Description |
| Run the server in development mode with hot reload |
| Build the project for production |
| Start the production server |
| Format code using Biome |
| Lint code using Biome |
| Run Biome checks on code |
| Run TypeScript type checking |
| Run tests |
| Start the MCP Inspector for debugging |
| Clean up ports used by the development server |
๐ Contributing
We welcome contributions! Please see our Contributing Guide for details on:
Development workflow
Branching strategy
Commit message format
Pull request process
Code style guidelines
๐ Resources
๐ License
MIT ยฉ Stanislav Stepanenko