Skip to main content
Glama

jira_get_statuses

Retrieve all available statuses from your Jira instance to understand workflow states and track issue progress across projects.

Instructions

Get all available statuses

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function that fetches all available Jira statuses by making an API request to the '/status' endpoint.
    async getStatuses(): Promise<Array<{ id: string; name: string }>> { return this.request<Array<{ id: string; name: string }>>("/status"); }
  • MCP server tool call handler for 'jira_get_statuses' that invokes the JiraClient method and formats the response as MCP content.
    case "jira_get_statuses": { const statuses = await jiraClient.getStatuses(); return { content: [{ type: "text", text: JSON.stringify(statuses, null, 2) }], }; }
  • src/index.ts:448-455 (registration)
    Tool registration in the listTools handler, defining the tool name, description, and empty input schema (no parameters required).
    { name: "jira_get_statuses", description: "Get all available statuses", inputSchema: { type: "object", properties: {}, }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yogeshhrathod/JiraMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server