x402-replace-all
Replace All: Replace All
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Text to process | |
| input | No | Input to process | |
| search | No | Search to process | |
| replacement | No | Replacement to process |
Replace All: Replace All
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Text to process | |
| input | No | Input to process | |
| search | No | Search to process | |
| replacement | No | Replacement to process |
Changes observed during successful MCP inspections.
Input schema / properties / inputAdded value: +{
+ "description": "Input to process",
+ "type": "string"
+}Input schema / properties / replacementAdded value: +{
+ "description": "Replacement to process",
+ "type": "string"
+}Input schema / properties / searchAdded value: +{
+ "description": "Search to process",
+ "type": "string"
+}Input schema / properties / textAdded value: +{
+ "description": "Text to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full disclosure burden and delivers nothing. It does not state whether the replacement is global or literal versus regex, whether it is case-sensitive, what the output form is, or any side effects. For a mutation-style transform tool with zero annotation coverage, this is a serious gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The single phrase is not so much concise as empty; it is under-specification rather than efficient brevity. There is no front-loaded scoping or qualifying information to earn its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With four parameters, no required-field guidance, no annotations, no output schema, and ambiguous overlapping parameter names, the definition is entirely inadequate for an agent to call this tool correctly. Nothing explains the semantics of the operation or its inputs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is nominally 100%, but every description is a contentless stub ('Text to process', 'Search to process'), so the parameter roles are not actually clarified. In particular, 'text' versus 'input' is ambiguous — which one is the subject string and which is the target corpus is never resolved, and no descriptions in the tool text compensate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description reads 'Replace All: Replace All', which merely restates the tool name rather than describing a verb+resource. An agent can guess it performs a text replacement, but it does not say what is being replaced, in what corpus, or how it differs from the many sibling text-manipulation tools (x402-replace-multiple, x402-template-replace). This is essentially a tautology.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No when-to-use guidance, no prerequisites, and no mention of alternatives among the large set of sibling replace/transform tools. The agent is left to infer everything from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.