Skip to main content
Glama

get_binary_info

Retrieve detailed metadata and structure information from binary files for reverse engineering and static analysis.

Instructions

Get comprehensive binary information (iI).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/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, yet it discloses nothing about scope, cost, or what 'comprehensive' entails. An output schema exists, which softens the need to describe return values, but the absence of any read-only/safety context or breadth hints leaves a gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

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

It is a single short sentence with no waste, which is good structural hygiene. However, brevity here reflects under-specification rather than effective conciseness, and the parenthetical '(iI)' is opaque filler.

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

Completeness2/5

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

With an output schema present, return values are partially covered, but the definition still lacks usage context, sibling differentiation, and behavioral hints. For an inspection tool sitting among dozens of overlapping metadata tools, this is inadequate to route an agent confidently.

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

Parameters2/5

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

Schema description coverage is 0% for the single session_id parameter, and the description adds no clarification of its meaning or default behavior. The name is somewhat self-explanatory, but the description does nothing to compensate for the coverage gap.

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

Purpose3/5

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

The description states a clear verb and resource ('Get comprehensive binary information'), so the general intent is understandable. However, 'comprehensive' is vague and it does not distinguish this overview tool from siblings like get_sections, get_imports, get_entrypoint, or get_symbols, which also return binary metadata. The '(iI)' token is a CLI alias that adds no meaning for an agent.

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 indication of when to use this tool versus the many granular siblings, nor any prerequisites or exclusions. An agent must guess whether to call this overview or fetch specific sections/imports individually.

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