Skip to main content
Glama

Jira List Projects

jira_list_projects
Read-onlyIdempotent

List all accessible Jira projects. Returns project keys, names, descriptions, and types. Use before searching to discover available projects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYesNumber of items returned.
itemsYesList of all accessible Jira projects

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "count": {
      +      "description": "Number of items returned.",
      +      "type": "integer"
      +    },
      +    "items": {
      +      "description": "List of all accessible Jira projects",
      +      "items": {
      +        "properties": {
      +          "avatarUrls": {
      +            "additionalProperties": {
      +              "type": "string"
      +            },
      +            "description": "Avatar URLs at various sizes",
      +            "type": "object"
      +          },
      +          "description": {
      +            "description": "Project description",
      +            "type": "string"
      +          },
      +          "expand": {
      +            "description": "Expansion hints",
      +            "type": "string"
      +          },
      +          "id": {
      +            "description": "Project ID",
      +            "type": "string"
      +          },
      +          "isPrivate": {
      +            "description": "Whether project is private",
      +            "type": "boolean"
      +          },
      +          "key": {
      +            "description": "Project key",
      +            "type": "string"
      +          },
      +          "leadUserName": {
      +            "description": "Lead user name",
      +            "type": "string"
      +          },
      +          "name": {
      +            "description": "Project name",
      +            "type": "string"
      +          },
      +          "projectCategory": {
      +            "additionalProperties": true,
      +            "description": "Project category details",
      +            "type": "object"
      +          },
      +          "projectTypeKey": {
      +            "description": "Type of project (e.g., software, business)",
      +            "type": "string"
      +          },
      +          "self": {
      +            "description": "API URL for project",
      +            "type": "string"
      +          },
      +          "simplified": {
      +            "description": "Whether project is simplified",
      +            "type": "boolean"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "items",
      +    "count"
      +  ],
      +  "type": "object"
      +}
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {}
      +]
  3. First observed

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. Description adds that it returns project details, but beyond that does not expand on behavioral traits (e.g., pagination, rate limits).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences: first declares action and output, second provides usage guidance. No extraneous words; each sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no parameters, complete annotations, and an output schema, the description is fully sufficient. It covers purpose and usage, leaving no gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters (0 params, 100% schema coverage), so baseline is 4. Description does not add parameter details as none exist, but it does describe output, which is acceptable.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'List all accessible Jira projects' and specifies returned fields (keys, names, descriptions, types). This distinguishes from sibling tools like jira_get_project (single project) and jira_search (issues).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use before searching to discover available projects,' providing a clear when-to-use context. However, it does not explicitly state when not to use or mention alternatives, missing the highest bar.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.