Jira MCP Server provides a TypeScript-based integration with Jira, enabling AI assistants to interact directly with Jira tickets through standardized tools. The server supports core ticket management operations like listing, viewing, creating, commenting, and updating ticket statuses, with full MCP protocol support for seamless interaction. Built for developers and project managers who want to streamline their Jira workflow through conversational AI interfaces.
No reviews yet. Be the first to review!
Sign in to join the conversation
Lists Jira tickets.
Retrieves detailed information about a specific ticket. Parameters: id (string) - The Jira ticket ID (e.g., TEST-123).
Retrieves all comments for a specific ticket. Parameters: id (string) - The Jira ticket ID (e.g., TEST-123).
Creates a new Jira ticket. Parameters: summary (string), description (string), projectKey (string), issueType (string).
Adds a new comment to an existing ticket. Parameters: id (string) - The Jira ticket ID (e.g., TEST-123), body (string) - The comment text.
Updates the status of an existing ticket. Parameters: id (string) - The Jira ticket ID (e.g., TEST-123), transitionId (string) - The ID of the transition to perform.
Searches for tickets across specified projects using text search. Parameters: searchText (string), projectKeys (string), maxResults (optional number).