Skip to main content
Glama

x402-bit-not

Bit Not: Perform a bitwise NOT operation on an integer. Provide value; returns the bitwise complement (~value).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueNoValue to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / value
      Added value: +{
      +  "description": "Value to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.9/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. It does say what is returned ('the bitwise complement (~value)'), which is useful, but omits critical behavior for a bitwise operation: bit width (e.g. 32-bit vs arbitrary precision), signedness, and how negative or out-of-range inputs are handled. Those omissions matter because the result of NOT depends entirely on width.

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 compact sentence plus a return clause, front-loaded with the operation name. No filler. It could be marginally tighter, but nothing is wasted.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter arithmetic utility with no output schema, the description conveys purpose and return value, which is close to sufficient. However, the arithmetic semantics that actually determine the answer (bit width, signedness, negative-input handling) are absent, leaving a meaningful gap for this class of tool.

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 100% and only one parameter exists, so the schema already documents 'value.' The description's 'on an integer' hints at the expected domain (the schema types it as a string), but it adds no format details such as decimal vs hex input. Baseline 3 applies when the schema does the heavy lifting.

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?

States a specific verb and resource: 'Perform a bitwise NOT operation on an integer,' and even names the operator (NOT / ~value). An agent can distinguish it from siblings like x402-bit-and or x402-bit-xor without opening a schema. It does not explicitly name or route against those siblings, so it falls short of a 5.

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 when-to-use guidance, no mention of alternatives (bit-and, bit-or, bit-xor, two-complement), and no prerequisites. The only usage-like statement is 'Provide value,' which is an instruction for calling, not a condition for choosing the tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources