MCP Libraries
mcp-jira-stdioTools Reference

jira_get_statuses

List available workflow statuses

jira_get_statuses

List available statuses in Jira, either globally or for a specific project.

Parameters

ParameterTypeRequiredDescription
projectKeystringNoFilter by project key

Example

{
  "tool": "jira_get_statuses",
  "arguments": {}
}

For Specific Project

{
  "tool": "jira_get_statuses",
  "arguments": {
    "projectKey": "PROJ"
  }
}

Response

Returns array of statuses:

  • id - Status ID
  • name - Status name (To Do, In Progress, Done, etc.)
  • description - Status description
  • statusCategory - Category (To Do, In Progress, Done)
  • iconUrl - URL to the status icon

On this page