Loading...
npm install
```{
"mcpServers": {
"Jira communication server": {
"command": "node",
"args": ["/PATH_TO_THE_PROJECT/build/index.js"],
"env": {
"JIRA_URL": "https://XXXXXXXX.atlassian.net",
"JIRA_API_MAIL": "Your email",
"JIRA_API_KEY": "KEY_FROM : https://id.atlassian.com/manage-profile/security/api-tokens"
}
}
}
}execute_jqlExecutes a JQL query and returns the results.
Read-only operation that retrieves data based on the query.
get_only_ticket_name_and_descriptionFetches the name and description of a Jira ticket.
Read-only operation that retrieves specific ticket information.
create_ticketCreates a new Jira ticket with specified parameters.
Creates a new ticket, which is a non-destructive write operation.
list_projectsLists available Jira projects.
Read-only operation that retrieves project information.
delete_ticketDeletes a Jira ticket based on its ID or key.
Deletes a ticket, which is a destructive operation.
edit_ticketModifies an existing Jira ticket.
Modifies ticket details, potentially altering important data.
get_all_statusesRetrieves all available statuses in Jira.
Read-only operation that retrieves status information.
assign_ticketAssigns a Jira ticket to a specified user.
Assigns a ticket, which is a non-destructive write operation.
query_assignableFinds users assignable to a project.
Read-only operation that retrieves user information.
add_attachment_from_public_urlAdds an attachment to a ticket from a public URL.
Adds an attachment, which is a non-destructive write operation.
add_attachment_from_confluenceAdds an attachment from a Confluence page to a ticket.
Adds an attachment, which is a non-destructive write operation.
This server offers useful Jira interaction tools but requires careful API key management. It's safe for read operations and controlled ticket creation, but risky for deletion or modification without proper authorization and monitoring.