Skip to main content
Glama
ranson21

jira-readonly-mcp

by ranson21

get_project_metadata

Fetch basic metadata for a Jira project, including name, type, and lead, using a project key. Read-only.

Instructions

Fetch basic metadata for a Jira project (name, type, lead). Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_keyYesJira project key, e.g. DEMO

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full behavioral burden, and it does disclose the key trait: 'Read-only'. However, it says nothing about behavior for an invalid or unknown project_key, permission requirements, or whether the result is cached.

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?

One short sentence that front-loads the verb and resource, followed by a two-word safety qualifier. Every clause earns its place with no redundancy.

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

Completeness4/5

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

For a simple single-parameter read tool with no output schema and no nested objects, the description covers purpose, scope of returned fields, and safety profile adequately. Only the invalid-key behavior is unaddressed, a minor gap at this complexity level.

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

Parameters3/5

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

Schema coverage is 100% and the single project_key parameter is documented in the schema with a concrete example ('e.g. DEMO'). The description adds no syntax or format detail beyond that, so the baseline of 3 applies.

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

Purpose4/5

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

States a specific verb ('Fetch') and resource ('basic metadata for a Jira project') and even enumerates the fields returned (name, type, lead), which is more than a tautology. It does not explicitly distinguish itself from the issue-centric siblings, but the resource difference is self-evident.

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 siblings such as get_issue or search_issues. The agent must infer that this is the tool for project-level lookups rather than issue-level ones.

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