Skip to main content
Glama

pipeline_status

Check pipeline readiness before sending prompts. Use probe mode to verify provider health and model metadata without transmitting task data.

Instructions

Check pipeline readiness without sending a user prompt.

The default check is local-only. probe=True permits only a provider health/model-metadata request and never sends task data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
probeNo
providerNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.1

TDQS

B3.4/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure. It clearly states the tool does not send a user prompt or task data, and that probe mode is restricted to provider metadata. This is strong safety-relevant behavioral transparency, though it omits other behavioral details like permissions or side effects.

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?

The description is compact and front-loaded with the main purpose. The second sentence adds necessary detail about the probe behavior without wasting words. Minor formatting quirks (backticks and line breaks) do not detract significantly.

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?

For a simple two-optional-parameter tool with an output schema present, the description covers the essential safety behavior and the probe mode. However, the undocumented provider parameter and the lack of guidance relative to sibling tools leave meaningful gaps in the overall context an agent needs.

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%, so the description must compensate. It explains the semantics of probe=True clearly, but the provider parameter is left entirely undocumented. With two parameters and only one explained, the description only partially compensates for the schema's lack of documentation.

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?

The description states a clear verb and resource: 'Check pipeline readiness without sending a user prompt.' It conveys the tool's core purpose and adds a meaningful scoping constraint (no user prompt). However, it does not explicitly distinguish itself from the sibling router_status, so it falls just short of full differentiation.

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 gives usage-relevant context by explaining the default is local-only and that probe=True permits only a provider health/model-metadata request. This implies when the probe option would be used, but it never explicitly states when to choose this tool over alternatives like router_status or other pipeline tools.

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