x402-bit-shift-left
Bit Shift Left: Bit Shift Left
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Value to process |
Bit Shift Left: Bit Shift Left
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Value to process |
Changes observed during successful MCP inspections.
Input schema / properties / valueAdded value: +{
+ "description": "Value to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure, and it discloses nothing: no return format (binary string vs integer), no bit-width behavior, no overflow/sign handling, no purity statement. A caller cannot predict the output shape or semantics.
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?
It is short, but the brevity comes from under-specification rather than tight editing – the entire text is a redundant echo of the title with no informational payload. Not a single sentence earns 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?
For an operation whose output and input encoding are both non-obvious, with no annotations, no output schema, and a placeholder parameter description, this definition leaves the agent unable to call the tool correctly. It is inadequate on every axis.
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 the single parameter's description is the content-free 'Value to process', so the structured fields explain nothing about expected format (integer, binary string, hex) or how many bits to shift. The tool description adds zero meaning on top of that, leaving the only input ambiguous.
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 is 'Bit Shift Left: Bit Shift Left' – it simply restates the tool name twice with no verb+resource elaboration. An agent learns nothing beyond what the identifier already implies, and no distinction from siblings like x402-bit-shift-right or x402-bit-unsigned-shift-right is offered.
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 whatsoever on when to use this tool versus x402-bit-shift-right, x402-bit-unsigned-shift-right, or the other bitwise siblings. No prerequisites, no input expectations, and no mention of how a shift amount is supplied (or whether one exists at all).
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.