Skip to main content
Glama

post_intent

Record a buy intent. Free. Does not charge or hold funds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mpnNo
specYes
agent_idNo
deadlineYes
quantityYes
verticalNo
max_price_usdYes
ship_to_countryYes

Schema Changelog

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

  1. First observed

TDQS

C2.7/5.0
Behavior3/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 does usefully state that the tool is free and does not charge or hold funds, which is important given the financial-looking parameters. However, it does not disclose other relevant behaviors such as whether the intent is publicly visible, whether authentication is required, or whether any follow-up action is triggered.

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 very short and front-loaded with the core action. The 'does not charge or hold funds' clarification is valuable, though 'Free' and 'does not charge' are somewhat redundant. It is appropriately concise but perhaps too terse for the tool's complexity.

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?

Given 8 parameters, 5 required, no parameter descriptions, no output schema, and no annotations, this description is insufficient for an agent to confidently invoke the tool correctly. The agent is left to guess formats for fields like deadline, max_price_usd, and ship_to_country, and cannot tell how this tool relates to sibling tools.

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

Parameters1/5

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

Schema description coverage is 0% and the description provides no meaning for any of the 8 parameters, including required fields like spec, quantity, max_price_usd, ship_to_country, and deadline. The description does nothing to compensate for the lack of schema descriptions.

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 action ('Record') and the resource ('a buy intent'), which is specific and understandable. It also implies a buyer-side action that contrasts with 'post_offer', though it does not explicitly distinguish itself from 'cover_intent' or other siblings.

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 description gives no guidance on when to use this tool versus alternatives like 'post_offer', 'cover_intent', or 'open_checkout'. There is no mention of prerequisites, typical scenarios, or exclusions.

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
Disambiguation3/5

Most tools target distinct workflow stages, but get_quote and search_supply both scan supply and write to the demand tape, and list_demand and open_pool both center on demand clusters. post_intent could also be confused with search_supply's implicit-intent side effect. Descriptions help, but some misselection risk remains.

Naming Consistency5/5

All tool names follow a consistent lowercase verb_noun pattern: post_intent, post_offer, get_quote, list_demand, open_checkout, search_supply. Repeated verbs like post and open are paired with different clear objects, keeping the pattern predictable.

Tool Count5/5

Eight tools is well-scoped for a pre-transaction demand/supply matching and checkout server. Each tool covers a meaningful stage without unnecessary duplication. The count feels intentional and complete for the stated domain.

Completeness4/5

The server covers the core pre-transaction lifecycle: recording intents and offers, covering intents, quoting, supply scanning, demand visibility, and checkout URL generation. There are no explicit update/delete/cancel operations, but the descriptions repeatedly scope out deposits, orders, and payment, so those omissions appear deliberate.