Skip to main content
Glama

write_nop

Patch binary code by writing NOP instructions at a specified address. Specify count and session ID to fill bytes with no-operation instructions.

Instructions

Write NOP instructions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
addressNo
session_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

D1.3/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden, yet it discloses nothing: not that this mutates binary contents, whether it requires a session_id or address, whether it patches memory or file, or whether changes are reversible. For a write operation 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.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The single sentence is short and front-loaded, but this is under-specification rather than conciseness; it omits everything an agent needs to invoke the tool correctly.

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

Completeness1/5

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

An output schema exists, so return values need not be explained, but the description is still wholly inadequate for a mutation tool with three undocumented parameters, no annotations, and no stated target or prerequisites.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% across three parameters (count, address, session_id), and the description adds no meaning for any of them — not the semantics of count, the address format, or the role of session_id. The schema alone leaves the agent guessing.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Write NOP instructions' is essentially a restatement of the tool name write_nop, offering a verb and resource but no scope, target, or context (binary, session, address range). An agent cannot distinguish its purpose from write_hex or write_assembly beyond the literal payload.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this versus write_hex or write_assembly, no prerequisites (e.g., an active session or valid address), and no exclusions. Nothing tells the agent what situational need this tool satisfies.

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