Skip to main content
Glama
getproxykit

ProxyKit-mcp

Official

List paused breakpoints

list_paused_breakpoints
Read-only

List requests paused at a breakpoint, awaiting agent or human review before release to upstream.

Instructions

List requests currently paused at a breakpoint, awaiting agent or human review before being released to the upstream.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so safety is covered. The description goes beyond them by explaining the domain semantics of the pause state — requests await agent or human review before release to the upstream — which tells the agent why the items exist and that they are blocking live traffic, though it says nothing about blocking timeouts or what a listed item contains.

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?

A single sentence with no filler, front-loaded with the verb and resource, and the state qualifier packed at the end. Nothing could be removed without losing information.

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 zero-param, read-only list tool this is nearly sufficient, but with no output schema the description does not hint at what a paused-breakpoint entry looks like or what identifier an agent would need to pass to release_breakpoint. Minor gap rather than a blocking one.

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

Parameters4/5

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

The tool takes zero parameters, which is the baseline-4 case; there is nothing for the description to clarify. The schema has no properties to document.

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?

Names a specific verb (List) and resource (requests paused at a breakpoint) and clarifies the state being listed. However, it never names the sibling release_breakpoint, which is the natural follow-up action, so an agent must infer the relationship from the tool list alone.

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?

Usage is only implied: the phrase 'awaiting agent or human review' suggests you call this to inspect pending holds, but there is no explicit when-to-use directive, no statement about what to do next, and no warning about when this is empty (e.g., breakpoints disabled).

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