Skip to main content
Glama

get_trial

Retrieve a complete clinical trial record by NCT ID, including eligibility criteria, study locations, and current status.

Instructions

Read one clinical trial in full, including who is eligible to join.

Use this after search_trials when a specific trial matters, or whenever a conversation names an NCT number. Returns title, status, phase, conditions, the eligibility criteria text with structured age range and sex, every study location, and the study description.

Args: nct_id: The trial's registry identifier: the letters NCT followed by exactly 8 digits, e.g. "NCT04280705".

Returns: The full trial record, or a not_found error if no trial has that number.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nct_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior4/5

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

With no annotations, the description must carry the behavioral disclosure burden. It explicitly states the tool reads a record, returns a full set of fields, and returns a not_found error for unknown IDs. It doesn't mention auth or rate limits, but for a read operation, the error behavior and return shape are the main transparency needs. The word 'Read' signals non-mutating behavior.

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 front-loaded with a one-sentence purpose, then usage guidelines, then an Args section, then a Returns section. It is cleanly sectioned and every sentence conveys needed information without filler. It's slightly longer than two sentences, but the structured layout keeps it scannable.

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?

For a single-parameter tool with an output schema, the description covers all needed context: when to use it, what the parameter is, what is returned, and the error condition. It leaves no ambiguity about how to select or invoke the tool. The output schema handles detailed return values, so the description's summary list is sufficient.

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

Parameters5/5

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

The input schema provides only a type and title for nct_id, with zero description coverage. The tool description compensates fully by specifying the exact format ('NCT followed by exactly 8 digits') and providing an example ('NCT04280705'). This is indispensable for correct invocation.

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 begins with 'Read one clinical trial in full', a specific verb and resource, and immediately states the scope (eligibility). It explicitly contrasts with search_trials by saying 'Use this after search_trials when a specific trial matters', which differentiates it from the sibling tool. The return-value enumeration further clarifies its role.

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

Usage Guidelines5/5

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

It provides explicit when-to-use guidance: after search_trials for a specific trial, or whenever an NCT number is mentioned. This is a clear condition that routes the agent to the correct tool. It doesn't list exclusions, but naming the alternative and the trigger condition is sufficient.

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