Skip to main content
Glama

ride_carpool_accept

Accept a carpool offer by providing an offer ID and confirmation flag. Supports dry-run mode to preview before finalizing.

Instructions

Accept carpool offer (dry-run)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenNo
confirmNo
offer_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries full behavioral burden. It is silent on authentication (the token param), how confirm actually triggers the real accept versus the dry run, and whether accepting is reversible. The one hint, '(dry-run)', is not elaborated, so the agent cannot tell what the tool really does by default.

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?

Very short and front-loaded, which is good, but the parenthetical '(dry-run)' is the only extra information and it introduces ambiguity instead of resolving it. Size is fine; content density is too low for a mutating action.

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?

A mutation tool with no annotations, no output schema, zero schema documentation, and three undocumented parameters. The description leaves auth requirements, the dry-run/confirm interaction, and the effect of acceptance entirely unstated.

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% for all three parameters, so the description must compensate, and it does not. It never explains that token is an auth credential, what offer_id references, or the role confirm plays in escaping dry-run mode.

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?

States a specific verb and resource (accept carpool offer), which is clear enough to distinguish from siblings like ride_carpool_reject and ride_carpool_dismiss. However the '(dry-run)' parenthetical muddies the action and is never explained.

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 guidance on when to use this versus ride_carpool_reject, ride_carpool_dismiss, or other ride actions, and no explanation of what the dry-run mode means for callers. Usage must be fully inferred.

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