Skip to main content
Glama

pubfi.route.execute

Destructive

Execute one exact GET or POST path through the authenticated PubFi account lane and the same Registry v2 matcher and typed executor as the HTTP gateway. Append :free only when the capability catalog publishes that exact account-scoped free variant.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoExact optional ASCII request-body bytes. For JSON routes, supply one compact serialized JSON document rather than a nested MCP argument value.
queryNoExact ASCII raw query string without a leading question mark.
methodYes
raw_pathYesExact original URI path consumed by the Registry matcher. Segments use canonical unreserved ASCII only; percent escapes, dot segments, query, fragment, and backslash are forbidden.
request_idNo
idempotency_keyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true and idempotentHint=false. The description adds useful context about the authenticated account lane, the Registry v2 matcher, and the typed executor, plus the ':free' variant condition. However, it does not elaborate on destructive effects, failure behavior, or rate limits, so it provides only modest added transparency.

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?

Two sentences, front-loaded with the core purpose, no filler or repetition. Every clause adds information about the execution lane, matcher, executor, or free-variant condition.

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

Completeness2/5

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

For a destructive, 6-parameter tool with two undocumented parameters, the description is too sparse. It does not mention side effects, idempotency expectations, how to discover the free variant via sibling tools, or when not to use this tool. The output schema helps with return values but does not fill these invocation-semantics gaps.

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 only 50%; request_id and idempotency_key have no schema descriptions. The tool description adds no parameter-level meaning beyond 'exact GET or POST path' and the ':free' append rule, leaving those two parameters unexplained and failing to compensate for the coverage gap.

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 opens with a specific action and resource: 'Execute one exact GET or POST path through the authenticated PubFi account lane.' It clearly distinguishes this from the sibling capability-list/get tools by focusing on route execution rather than capability discovery.

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

Usage Guidelines4/5

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

It provides clear context about when this tool is appropriate—when an exact path must be executed through the same matcher/executor as the HTTP gateway—and adds a conditional rule: append ':free' only when the capability catalog publishes that variant. It does not explicitly name alternatives or exclusions, so it stops short of a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct operation: single capability lookup, catalog enumeration, route execution, and runtime upgrade verification. There is no meaningful overlap or risk of selecting the wrong tool for a given task.

Naming Consistency5/5

All tools follow the same pubfi.<resource>.<action> dotted convention with consistent snake_case and clear verbs. The naming pattern is uniform and predictable across the entire server.

Tool Count4/5

Four tools is compact but reasonable for a focused PubFi gateway client covering discovery, execution, and verification. The surface is slightly thin for a broadly named server, but each tool earns its place within the stated scope.

Completeness4/5

The set covers capability discovery via list/get, execution via route.execute, and a specialized runtime upgrade verification flow. Minor gaps exist, such as no separate route listing or upgrade submission tool, but the apparent core workflows are supported.

Resources