Skip to main content
Glama

ride_debt_pay

Pay outstanding Snapp ride debts using a wallet and token; confirm the transaction and preview it with dry-run before execution.

Instructions

PAY DEBT (dry-run)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenNo
walletNo
confirmNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.3/5.0
Behavior2/5

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

No annotations provided, so the description carries the full burden. It signals dry-run but doesn't say whether a dry-run still requires auth (the 'token' param suggests it might), whether it's idempotent, what the confirm flag does, or what the response contains. For a payment tool with no annotation coverage, this is a major gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a terse four-word title, so it's not padded, but it's also under-specified rather than genuinely concise. There is no front-loaded structure beyond the label itself, which is minimum viable but not efficient communication.

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

Completeness1/5

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

For a financial mutation tool with three undocumented parameters, no annotations, and no output schema, the description is drastically insufficient. An agent cannot safely determine what the dry-run actually does, what the confirm and token fields control, or what the outcome will be.

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?

All three parameters (token, wallet, confirm) have zero schema description coverage, so the description must compensate and does not. It never mentions the token, wallet, or confirm parameters, leaving an agent to guess that 'confirm' gates a real payment vs. dry-run and what 'wallet' identifies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'PAY DEBT (dry-run)' gives a verb+resource (pay debt) and a mode qualifier (dry-run), so the core action is identifiable. However it doesn't distinguish this tool from the sibling ride_debts or clarify whether dry-run means no mutation happens, leaving scope ambiguous.

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?

No when-to-use or when-not-to-use guidance is provided. With siblings like ride_debts and ride_balance nearby, an agent gets no routing signal about when to invoke this versus viewing debt. The parenthetical '(dry-run)' hints at intent but not enough.

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