Skip to main content
Glama

listJiraProjectComponents

Read-onlyIdempotent

Retrieve all components in a Jira project to view their IDs, names, work item counts, and ownership details. Use it to inspect project structure before planning or assigning work.

Instructions

Components in a space, with IDs, names, work item counts, and ownership details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdOrKeyYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful surface-level context about the shape of the returned data (IDs, names, work item counts, ownership), but says nothing about pagination, result caps, or permissions needed to enumerate project components.

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

Conciseness4/5

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

A single compact sentence with no filler, and the most important information (which components) leads. Its only inefficiency is that the truncated phrasing loses the 'list project' framing an agent would want front-loaded.

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

Completeness3/5

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

With no output schema, the description must carry return-value information, and it does sketch the fields returned. However, it omits the only parameter's semantics and any listing behavior, which is a meaningful gap for a project-scoped enumeration tool.

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

Parameters2/5

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

Schema description coverage is 0% and the single parameter is undocumented in the schema. The description mentions 'a space' but never says that projectIdOrKey accepts either a numeric project ID or a project key, leaving the only required input ambiguous.

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

Purpose3/5

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

The fragment 'Components in a space' names the resource but supplies no verb and uses 'space', a non-Jira term, instead of 'project'. It also does not distinguish itself from close siblings such as listJiraProjectVersions or listJiraProjectIssueTypesMetadata; the returnable fields (IDs, names, counts, ownership) are listed, but the operation itself is only implied.

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

Usage Guidelines2/5

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

There is no when-to-use guidance, no prerequisites, and no mention of alternatives among the ~40 sibling tools. An agent must infer usage entirely from the tool name.

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