Skip to main content
Glama

jira_get_projects

Retrieve all projects from a Jira instance to view available project lists, manage project access, or analyze project structures.

Instructions

Get all Jira projects

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:372-378 (registration)
    Tool registration in ListTools handler, including name, description, and empty input schema.
    name: "jira_get_projects", description: "Get all Jira projects", inputSchema: { type: "object", properties: {}, }, },
  • The MCP tool handler that executes jiraClient.getProjects() and returns the result as JSON text.
    case "jira_get_projects": { const projects = await jiraClient.getProjects(); return { content: [{ type: "text", text: JSON.stringify(projects, null, 2) }], }; }
  • JiraClient helper method that performs the actual API call to fetch all projects.
    async getProjects(): Promise<JiraProject[]> { return this.request<JiraProject[]>("/project"); }

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