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.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Retrieves a list of Jira tickets, optionally filtered by a JQL query. Parameters: jql (optional string)
Retrieves detailed information about a specific ticket. Parameters: id (string, required)
Retrieves all comments for a specific ticket. Parameters: id (string, required)
Creates a new Jira ticket. Parameters: summary (string, required), description (string, required), projectKey (string, required), issueType (string, required)
Adds a new comment to an existing ticket. Parameters: id (string, required), body (string, required)
Updates the status of an existing ticket. Parameters: id (string, required), transitionId (string, required)
Searches for tickets across specified projects using text search. Parameters: searchText (string, required), projectKeys (string, required), maxResults (optional number)