re-speakeasy
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@re-speakeasyemulate /tmp/sample.exe and show API trace"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
re-speakeasy
MCP server for Speakeasy (Mandiant, Apache-2.0) — Windows API emulation for binary analysis. The "run a .exe in a Wine-like sandbox and tell me what it did" tool.
Why
The other RE-AI MCP servers analyze binaries statically (no execution): re-lief reads headers, re-rizin disassembles, re-triton symbolically executes individual functions. None of them can answer "what APIs does this .exe call, with what arguments, in what order, when I run it?"
re-speakeasy fills that gap. Speakeasy is a Windows API emulator — it loads the .exe / .dll in-process and serves the same Win32 surface that Windows would, but in pure Python. The output is a per-API trace that complements the static analysis: "the static strings say this binary calls CreateFileW" + "the dynamic trace confirms it calls CreateFileW("C:\\Users\\...", GENERIC_READ, ...)".
Related MCP server: re-mcp
Architecture
The Python MCP server is a thin wrapper around a speakeasy-cli Python helper installed by install.sh:
Claude Code (MCP stdio)
│
▼
re-speakeasy server (Python, this directory)
│ subprocess.run(...)
▼
speakeasy-cli (small Python script, wraps the Speakeasy API)
│
└─ speakeasy-emulator (pip-installed, the actual emulator)The subprocess boundary is intentional: Speakeasy is a heavy Python package with rich in-process APIs. The subprocess wrapper keeps the MCP server's memory footprint small and lets Claude Code load the plugin in degraded mode if Speakeasy isn't installed.
Tools
Tool | What it does |
| Health check — return Speakeasy version + API count |
| Run a .exe / .dll under Speakeasy, return per-API trace |
| Return the count + sample of the Win32 API catalog Speakeasy emulates |
Install
./install.sh installs speakeasy-emulator from PyPI.
To install standalone:
pip install speakeasy-emulatorRequirements
Python 3.11+
speakeasy-emulator(Apache-2.0, on PyPI)No system dependencies
Degraded mode
If speakeasy-cli is not installed, every tool returns {"status": "WARN", "error": "speakeasy-cli not installed; run install.sh", ...}. The Python MCP server itself always loads so Claude Code can surface the install hint.
Pairing with re-winedbg
re-winedbg runs a Windows .exe under Wine (the full Windows compatibility layer, including x86_64 emulation) and exposes a gdbserver for interactive debugging. re-speakeasy runs the .exe under Speakeasy (the pure-Python emulator, no real CPU) and returns a structured API trace.
Use
re-speakeasy.emulate_binaryfor "what did this binary do, end-to-end, with a structured trace?" — fast, no x86 emulation, can be retried safely.Use
re-winedbg.start_winedbg_gdbserverfor "I want to step through this binary interactively, with breakpoints" — slower (full Wine + gdbserver), but gives the analyst control.
For the encrypted-VM bytecode family: re-speakeasy.emulate_binary is the right first call (let the encrypted stub decrypt, watch the dispatcher fire, see which handlers execute); re-winedbg is the right follow-up when the analyst wants to break at a specific handler entry.
Pairing with re-leak-scan
The Speakeasy trace includes network calls (WinHttpOpen, WSAConnect, InternetOpenUrl, ...). Cross-reference against re-leak-scan.find_secrets to confirm whether the dynamic calls match the static string-table leaks. The Sentry DSN or Logstash URL in the strings is a credential; the same URL appearing in the Speakeasy trace is the actual call site.
Available Tools
3 toolscheck_speakeasyA
Return speakeasy-cli version + Python module availability.
Reports WARN (not ERROR) when the helper is not
found. The fallback chain: $RE_SPEAKEASY_CLI_PATH ->
<server>/bin/speakeasy-cli -> PATH.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes the warning behavior (WARN not ERROR) and the fallback chain for locating the helper, providing good transparency beyond what annotations (none provided) would cover.
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?
Concise two-sentence description: first sentence states purpose, second explains behavior and fallback. No unnecessary words, front-loaded key information.
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?
Completeness is high for a simple check tool with no parameters and no output schema. Covers return value, behavior on failure, and fallback chain. Missing output format detail but not critical.
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?
No parameters exist, so baseline score of 4 applies. Description adds behavioral context beyond schema but does not need to explain parameters.
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?
Clearly states the tool returns speakeasy-cli version and Python module availability. Uses specific verb 'return' and resource, distinct from sibling tools like emulation and API listing.
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?
Implies usage as a diagnostic check, mentions that WARN is reported instead of ERROR when helper is not found, but lacks explicit when-to-use or when-not-to-use guidance relative to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
emulate_binaryA
Run path under Speakeasy and return a structured per-API trace.
Speakeasy is a Windows API emulator — it loads the .exe / .dll in-process and serves the same Win32 surface that Windows would, but in pure Python. The trace captures every API call the binary makes (CreateFileW, RegOpenKeyExW, NtCreateFile, etc.) with arguments + return values.
Args: path: Windows .exe / .dll to emulate timeout_s: wall-clock budget (default 60s; binaries that loop or call Sleep(INFINITE) can hang the emulator)
Returns::
{"path": "...",
"trace": [
{"api": "CreateFileW", "args": [...], "return": "...",
"timestamp_ns": N, "module": "kernel32"},
...
],
"summary": {"api_count": N, "unique_apis": [...],
"files_accessed": [...], "registry_keys": [...],
"processes_spawned": [...], "network_calls": [...]}}On a missing helper, returns {"status": "WARN", "error": "speakeasy-cli not installed", ...} so the agent knows to
retry after install.sh.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| timeout_s | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It describes the in-process loading, the emulator surface, the trace structure, and the error case for missing helper. It does not mention concurrency, memory, or side effects, but is generally transparent.
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?
The description is well-structured with a clear summary, explanation of Speakeasy, parameter details, and return format. It is slightly verbose but each sentence serves a purpose.
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?
Given the complexity (2 parameters, no output schema), the description is highly complete. It explains the tool's operation, parameter behavior, return structure with an example, and error handling, leaving no major gaps.
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 coverage is 0%, so the description must add meaning. It clearly explains 'path' as Windows .exe/.dll to emulate and 'timeout_s' as wall-clock budget with a warning about hanging, providing crucial context beyond the schema.
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 specifies the tool runs a binary under Speakeasy and returns a structured per-API trace. It distinguishes itself from siblings (check_speakeasy, list_emulated_apis) by focusing on execution and trace generation.
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?
The description implies when to use this tool (to emulate a binary and get a trace) and mentions the timeout default and potential hanging, but does not explicitly state when not to use it or compare with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_emulated_apisA
Return the list of Win32 APIs Speakeasy knows how to emulate.
Useful for "can Speakeasy handle this binary's API surface?"
before calling :func:emulate_binary on a long-running
target. The list is large (thousands of APIs) — the default
is to return the count and a few sample categories.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must fully disclose behavior. It explains the default output is not the full list but a count and sample categories, and mentions the list is large. This is sufficient for understanding the tool's behavior.
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?
Two well-structured sentences. First states purpose, second provides usage guidance and output details. No filler.
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?
The description covers purpose, usage, and default output. It does not explicitly describe the output format or whether a full list can be obtained, but for a simple listing tool with no parameters, this is largely complete.
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?
No parameters in schema, but description adds crucial context about default output behavior (count and sample categories) and scale (thousands of APIs). This goes beyond the schema.
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 clearly states it returns the list of Win32 APIs Speakeasy can emulate, using a specific verb ('Return') and resource ('list of Win32 APIs'). It differentiates from siblings by positioning itself as a pre-check before emulation, unlike 'emulate_binary' which actually emulates, and 'check_speakeasy' which is likely a different check.
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?
Explicitly states when to use: 'Useful for "can Speakeasy handle this binary's API surface?" before calling emulate_binary on a long-running target.' This provides clear context and alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct operation: checking setup, running emulation, and listing APIs. There is no overlap in purpose.
All tool names follow the verb_noun pattern in snake_case (check_speakeasy, emulate_binary, list_emulated_apis), ensuring predictability.
With 3 tools, the server is tightly scoped to its core functionality: verifying the environment, performing emulation, and querying capabilities. No unnecessary bloat.
The tool set covers the full workflow for Speakeasy integration: availability check, binary emulation, and API surface listing. No obvious gaps for the intended use case.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for ScanMalware.com URL scanning, malware detection, and analysis.
MCP server for static security analysis of Android source code
MCP server for Superserve sandboxes: create, exec, and manage Firecracker microVMs
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- AlicenseCqualityAmaintenanceMCP Server for automated reverse engineering with IDA Pro.4311,702MIT
- AlicenseNot gradedqualityBmaintenanceA multi-backend MCP server that exposes binary analysis capabilities from IDA Pro and Ghidra, allowing LLMs to directly drive reverse-engineering tools via natural language.140Apache 2.0
- AlicenseBqualityBmaintenanceMulti-tier memory forensics MCP server combining a fast Rust engine with Volatility3 coverage for analyzing memory dumps.156MIT
- FlicenseBqualityBmaintenanceA simple MCP server exposing persistent, scriptable Frida dynamic instrumentation to an AI agent for Windows reversing, malware/security analysis, and dynamic debugging.19
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Heretek-RE/re-speakeasy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server