Skip to main content
Glama
mattmaas

n8n-admin-mcp

by mattmaas

replay_sample_payload

Parse and normalize a sample payload from JSON for n8n workflow replay. Validates and standardizes input so payloads are ready for re-execution.

Instructions

Parses and normalizes a sample payload

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payload_jsonYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/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 the full behavioral burden and largely fails it. It does not say whether the tool is read-only, whether the transformed payload is returned or persisted, how it handles malformed input, or how 'normalization' affects the data.

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?

A single short, front-loaded sentence with no filler or redundancy. It is efficient, though the brevity comes at the cost of the missing detail scored elsewhere.

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?

With no output schema and no annotations, the description should explain what the tool returns and what 'normalized' means. A payload-parsing tool whose result format is entirely undocumented is not callable with confidence.

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 0% and the only parameter, payload_json, has just a minLength constraint. The description adds nothing about expected format (raw JSON string, escaped JSON, envelope object, size limits) or whether it must correspond to a node's output shape.

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 names a specific verb pair ('parses and normalizes') and a resource ('sample payload'), so the mechanical action is clear. However, the tool name uses 'replay' while the description never explains the replay use case, and it does not distinguish this from siblings like validate_tool_io or inspect_node_output_shape, which also deal with payload/IO shapes.

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 guidance on when to call this versus validate_tool_io, inspect_node_output_shape, or derive_tool_schema. No prerequisites, no context about where the 'sample payload' comes from, and no mention of what a caller gains by invoking it.

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