Skip to main content
Glama
DansPK

Kali MCP

by DansPK

steghide

Conceal sensitive data inside image or audio files, or detect and extract hidden messages using passphrase-protected steganography.

Instructions

Steganography tool — hides data within image (JPEG, BMP) and audio (WAV, AU) files, or extracts hidden data from them. Uses passphrase-protected embedding. Use to detect hidden messages in files (CTF challenges) or to conceal data. Output: embedded file confirmation or extracted hidden content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
optsNoAdditional steghide options
commandNoOperation: 'info' (check if file has hidden data), 'embed' (hide data), 'extract' (recover hidden data). Default: info
cover_fileNoCover image/audio file to hide data in (for embed) or stego file to analyze
embed_fileNoFile to hide inside the cover file (for embed mode)
passphraseNoPassphrase used to embed or extract the hidden data
stego_fileNoOutput stego file (for embed) or source stego file to extract from (for extract)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It mentions passphrase-protected embedding and the expected output ('embedded file confirmation or extracted hidden content'), which is genuinely useful. It does not disclose whether operations modify the cover file, what happens on wrong passphrases, or whether extraction requires matching the embedding passphrase, leaving some behavioral ambiguity for a security tool.

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?

The description is concise and front-loaded: the first phrase immediately identifies the tool as a steganography tool and its supported formats. The use-case sentence and output note are both informative and non-redundant. It is slightly longer than strictly necessary but every sentence earns its place.

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?

The tool has three operation modes (info, embed, extract) and multiple interdependent parameters, but the description does not explain how to combine parameters per mode or what the 'info' output looks like. The input schema fills in parameter roles, so this is not severely incomplete, but for a tool without an output schema and no annotations, more operational context would be expected.

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?

The input schema already documents all six parameters with 100% coverage, so the baseline is 3. The description adds useful format context (JPEG, BMP, WAV, AU) and passphrase usage, but it does not explain the relationships between command, cover_file, embed_file, stego_file, and passphrase beyond what the schema already states. This is adequate but not additive.

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?

The description states a clear verb+resource: it hides data within JPEG/BMP/WAV/AU files and extracts hidden data from them. It also names the primary use cases (CTF detection, data concealment), so an agent can identify the tool's job. It does not explicitly differentiate it from steganography-adjacent siblings like exiftool or binwalk, but the core 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.

Usage Guidelines3/5

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

The description gives useful usage context—'Use to detect hidden messages in files (CTF challenges) or to conceal data'—which implies when to reach for the tool. However, it does not contrast it with alternatives such as exiftool for metadata or binwalk for file carving, nor does it state when not to use steghide. The guidance is present but implicit and incomplete.

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