Skip to main content
Glama

Caravan

Check forming pools

caravan_check_pools
Read-onlyIdempotent

Check once whether a posted purchase intent has joined a better-priced forming pool. EXPERIMENTAL — TEST NETWORK ONLY — NOT A FINANCIAL PRODUCT OR SERVICE — NO REAL FUNDS — AS IS, NO WARRANTY, NO LIABILITY — USE AT YOUR OWN RISK

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
intentIdYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.1/5.0
Behavior4/5

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

The description includes extensive risk warnings: 'EXPERIMENTAL — TEST NETWORK ONLY — NOT A FINANCIAL PRODUCT OR SERVICE — NO REAL FUNDS — AS IS, NO WARRANTY, NO LIABILITY — USE AT YOUR OWN RISK.' These go beyond the annotations and clearly communicate the tool's non-production, experimental nature. No contradictions with annotations.

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 core instruction is concise and front-loaded. The long all-caps risk disclaimer is verbose but directly relevant given the experimental nature of the tool; it does not dilute the primary purpose.

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?

The description explains the purpose but omits what the tool returns (e.g., a boolean, a status object, or match details). Since there is no output schema, the absence of any return-value description leaves the tool's behavior incomplete for an agent.

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?

The schema provides only a regex pattern for intentId with no description. The description mentions 'posted purchase intent,' which gives some meaning to the parameter, but does not explain how to obtain the ID, its expected format beyond the pattern, or any related concepts.

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 clearly states the tool's primary action: checking once whether a posted purchase intent has joined a better-priced forming pool. It names the resource and action specifically, though it does not explicitly differentiate it from related sibling tools like get_match_status.

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

Usage Guidelines2/5

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

The phrase 'Check once' provides some guidance on polling frequency, but there is no explicit instruction about when to use this tool versus alternatives such as caravan_get_match_status or caravan_commit. No usage context or conditions are given.

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

B3.3/5.0
Disambiguation5/5

Each tool has a distinct purpose: posting intents/offers, committing, checking pools, polling match status, paying/revealing, attesting, and seller onboarding. No two tools overlap in functionality, and even similar-sounding ones (check_pools vs. get_match_status) target different objects (pools vs. intents).

Naming Consistency5/5

All tools follow the same caravan_verb_noun pattern with snake_case, making the naming fully consistent and predictable. The prefix also clearly ties tools to the server.

Tool Count5/5

With 9 tools, the set is well-scoped for a marketplace/aggregation service. It covers the core workflow without being sparse or overwhelming, fitting the recommended 3-15 range.

Completeness4/5

The tools cover the main lifecycle: posting intents and offers, committing, matching, payment, attestation, and seller onboarding. However, there is no explicit cancel/withdraw tool for intents or offers, which is a minor gap in full lifecycle management.

Resources