#!/usr/bin/env node /** * Code-Act MCP Server (stdio, no SDK dependency) * * Lightweight JSON-RPC stdio server that exposes `code_act` as a real tool_use level MCP tool. * Proxies execution to MAMA OS HTTP API (POST /api/code-act on localhost:3847). * * WHY THIS EXISTS: * - LLM strongly prefers real tool_use (MCP tools) over text-based tool_call blocks * - By registering code_act as MCP tool, it competes equally with other MCP tools * - The actual sandbox execution happens in MAMA OS process (shared GatewayToolExecutor) */ export {}; //# sourceMappingURL=code-act-server.d.ts.map