Skip to main content
Glama
Headdao
by Headdao

get_project

Retrieve detailed metadata and current status for a specific presentation project by providing its project ID.

Instructions

Get detailed information about a specific project, including its metadata and current status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID to retrieve

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.2

TDQS

A3.8/5.0
Behavior3/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It clearly signals a read operation ('Get') and what data is returned (metadata, current status), but it does not mention potential errors, authentication requirements, or side effects, leaving some behavioral ambiguity.

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?

The description is a single, focused sentence with no filler. The main action and object are front-loaded, and every word earns its place.

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 get-by-ID tool with one parameter and no output schema, the description gives enough context to select and invoke it. It could be more complete by describing the exact return structure or behavior when a project is not found, but these are minor gaps for this low-complexity tool.

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?

The schema already has 100% description coverage for project_id ('Project ID to retrieve'), so the description adds no additional parameter-level meaning. A baseline of 3 is appropriate because the schema fully handles parameter semantics.

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?

The description states a clear verb ('Get'), a specific resource ('a specific project'), and the kind of output ('detailed information ... metadata and current status'). This distinguishes it from list_projects (all projects) and check_status (status only), so an agent can select it without opening the schema.

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

Usage Guidelines3/5

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

The description implies usage: use this when you have a specific project_id and need full details. It does not explicitly state when not to use it, nor does it name alternatives like list_projects or check_status, so the usage context is only inferred rather than clearly guided.

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