Skip to main content
Glama
davidmosiah

Zé Delivery MCP

Place a Zé order (gated)

ze_place_order
Destructive

Place a Zé Delivery order after explicit user consent and legal age confirmation. Requires opt-in mutations and confirmed intent to complete the purchase.

Instructions

Fail-closed. Needs ZE_ALLOW_MUTATIONS and explicit_user_intent. Guest tokens cannot charge. Default examples never enable this.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputNo
response_formatNomarkdown
confirmed_legal_ageNo
explicit_user_intentNoMust be true after the user explicitly asked for this write.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.4
    • addedInput schema / properties / confirmed_legal_age
      Added value: +{
      +  "default": false,
      +  "type": "boolean"
      +}
  2. First observedv0.1.2

TDQS

A3.6/5.0
Behavior4/5

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

The description adds meaningful behavioral context beyond the annotations: fail-closed behavior, required environment flag, explicit user intent requirement, guest charge restriction, and default-example safety. This complements the destructiveHint and readOnlyHint annotations without contradicting them.

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?

Four short, purposeful sentences with no filler. The most important safety information, fail-closed behavior, is front-loaded, and every sentence adds distinct value.

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 mutation with a free-form input parameter and no output schema, the description is incomplete. It covers safety gates well, but it does not explain what goes into the input object, how confirmed_legal_age factors in, or what a successful call returns, making correct invocation underspecified.

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 25%, and the description does not compensate. It reinforces explicit_user_intent, but provides no guidance for the critical free-form input object, response_format, or confirmed_legal_age, leaving the agent to guess what payload structure is expected.

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 title and description clearly identify the action as placing a Zé order and signal it is gated. However, it does not distinguish this from the closely related sibling ze_complete_checkout, so an agent must infer which action is appropriate.

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?

The description gives clear invocation conditions: it requires ZE_ALLOW_MUTATIONS and explicit_user_intent, and it warns that guest tokens cannot charge and default examples never enable this. It does not explicitly state when to prefer this over ze_complete_checkout, but the preconditions and exclusions provide actionable usage guidance.

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