Skip to main content
Glama

Update a reported submission

update_submission
Idempotent

Mark a previously reported submission as still waiting, approved, rejected or withdrawn, using its token.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenYes
statusYes
decided_onNoYYYY-MM-DD

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
errorNo
statusNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "error": {
      +      "type": "string"
      +    },
      +    "ok": {
      +      "type": "boolean"
      +    },
      +    "status": {
      +      "enum": [
      +        "waiting",
      +        "approved",
      +        "rejected",
      +        "withdrawn"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already provide idempotentHint=true, destructiveHint=false, and readOnlyHint=false, so the agent knows the safety profile. The description adds useful context: it targets an existing submission ('previously reported') and identifies it via 'its token,' which goes beyond what annotations or the schema convey.

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?

A single sentence with no filler, front-loading the action and resource before enumerating statuses and the token requirement. Every part earns its place.

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

Completeness4/5

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

For a simple mutation tool, the description covers the precondition, the allowed status values, and the identifier. An output schema exists for return values and annotations cover idempotency and non-destructiveness. Only minor details like where the token comes from and when decided_on is needed are left implicit.

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

Parameters3/5

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

Schema description coverage is only 33%, so the description must partially compensate for undocumented parameters. It clarifies that token is the identifier for the submission, but does not explain token provenance or when decided_on is applicable. The status enum is already fully defined in the schema.

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

Purpose5/5

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

The description states a specific verb ('Mark'), the resource ('previously reported submission'), and enumerates the four valid statuses. The phrase 'previously reported' distinguishes it clearly from the sibling report_submission, so an agent can tell them apart without inspecting the schema.

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

Usage Guidelines3/5

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

The description implies a prerequisite (the submission must have been reported first) but does not explicitly name alternatives or state when not to use this tool. Usage context is present but only implicit.

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.

Resources