base64
Encode or decode Base64
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| action | Yes |
Encode or decode Base64
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| action | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the full behavioral burden, yet it discloses nothing about error handling for malformed input, output format, character set, or whether padding/URL-safe variants are accepted. It only restates the two modes implied by the action parameter.
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?
A four-word clause is maximally concise and front-loaded, but it is terse to the point of under-specification for a tool with two undocumented required parameters.
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?
The tool is simple and has no output schema, which lowers the bar, but with 0% parameter documentation and no annotations the description should at minimum name the valid action values and the expected input. Nothing an agent needs to invoke it correctly is supplied.
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 0% and both parameters ('action', 'text') are undocumented strings with no enums. The description hints the action is either encode or decode but never states the accepted literal values or the required text type/format, leaving the agent to guess.
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?
States a specific verb pair and resource ('Encode or decode Base64'), so the agent immediately knows the transformation offered. It does not differentiate from siblings like jwt_decode or url_clean, but for a generic codec the purpose is unambiguous.
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?
There is no guidance on when to pick this over sibling tools such as jwt_decode or url_clean, and no note on input expectations or limits. Only the bare capability is stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.