WASM Agent
Create sandboxed agents that run in WebAssembly for safe, isolated execution.
When to use
When you need to run untrusted code, experiment with agent configurations, or create portable agents that run anywhere WASM is supported.
Steps
- Create agent — call
mcp__claude-flow__wasm_agent_createwith agent configuration - Send prompt — call
mcp__claude-flow__wasm_agent_promptto interact with the agent - Use tools — call
mcp__claude-flow__wasm_agent_toolto give the agent access to specific tools - Manage files — call
mcp__claude-flow__wasm_agent_filesto read/write files in the sandbox - Export — call
mcp__claude-flow__wasm_agent_exportto package the agent for sharing - List agents — call
mcp__claude-flow__wasm_agent_listto see all running WASM agents - Terminate — call
mcp__claude-flow__wasm_agent_terminateto stop an agent
Benefits
- Full sandbox isolation — agents cannot access the host filesystem
- Portable — export and run on any WASM runtime
- Reproducible — same behavior across platforms
- Safe — no risk of system damage from agent actions