Skip to main content
Glama

call_write

Create or update All Quiet resources by sending POST, PUT, or PATCH requests to any API endpoint, providing method, path, and JSON body.

Instructions

Create or change something through any All Quiet API operation (JSON bodies only).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON body, see describe_operation
pathYesPath template exactly as listed, e.g. /team/{id}
queryNoQuery parameters. Lists repeat the key (Statuses=a&Statuses=b)
methodYes
path_paramsNoValues for {placeholders} in the path

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false and destructiveHint=false, so the description's 'Create or change' is consistent. It adds the useful JSON-body-only constraint, but does not disclose responses, auth needs, rate limits, or side-effect details.

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 a single, front-loaded sentence with no filler. It is concise and readable, though it could have used additional structure to explain the generic pass-through behavior.

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 low-level generic API caller with five parameters and no output schema, this description is incomplete. It does not explain how to assemble path_params, query, and body together, nor what a successful write call returns or how to discover operation-specific details.

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 80%, so most parameter meaning is already documented. The description adds minimal value beyond 'JSON bodies only,' which clarifies the body parameter but does not compensate for the vague 'see describe_operation' reference.

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 uses a clear verb phrase, 'Create or change,' and identifies the tool as a generic write path through All Quiet API operations. It is distinguishable from siblings like call_read and call_delete by its write focus and method enum.

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?

There is no explicit guidance about when to use this tool versus call_read, call_delete, or the higher-level CRUD tools. The agent is left to infer that this is for write operations not covered by specific sibling tools.

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