Agent MCP Studio: Build Multi-Agent MCP Systems Entirely in a Browser via WASM

✍️ OpenClawRadar📅 Published: April 25, 2026🔗 Source
Agent MCP Studio: Build Multi-Agent MCP Systems Entirely in a Browser via WASM
Ad

Agent MCP Studio is a browser-only IDE for building and orchestrating MCP (Model Context Protocol) agent systems. The entire stack — tool authoring, multi-agent orchestration, RAG, code execution — runs from a single static HTML file via WebAssembly. No backend, no Docker, no server. Close the tab and everything is gone.

Key Features

  • WASM-based sandbox: Tools run in Pyodide (Python) or DuckDB-WASM (SQL), with no code leaving the browser. LLM-generated code is AST-validated before registration, then JIT-compiled on first call.
  • 10 orchestration strategies: Supervisor, Mixture of Experts (parallel + synthesizer), Sequential Pipeline, Plan & Execute, Swarm, Debate, Reflection, Hierarchical, Round-Robin, Map-Reduce. You drag tool chips onto persona nodes on a service graph, pick a strategy, and the topology adapts.
  • On-device RAG: Uses Xenova/all-MiniLM-L6-v2 via Transformers.js for local embeddings. No network calls.
  • Built-in LLM: Supports OpenAI Chat Completions or a local Qwen 1.5 0.5B running in-browser via Transformers.js for fully offline mode.
  • Bridge.js: A Node bridge speaks stdio to Claude Desktop and WebSocket to your tab — so your browser becomes an MCP server.
  • Export to production: Generates a real Python MCP server: server.py, agentic.py (faithful port of the browser orchestration), tools/*.py, Dockerfile, requirements.txt, .env.example. Also exports as a single .agentpack.json (Project Pack), which auto-detects required external services from os.environ.get(...) calls.
Ad

Practical Commands

# Build the exported Docker image
cd agent-mcp-server-YYYY-MM-DD
docker build -t agent-mcp-export .

Run (stdio – for local use with Claude Desktop)

docker run --rm -i
-e MCP_ALLOWED_HOSTS='api.github.com,*.githubusercontent.com'
agent-mcp-export

Wire Claude Desktop to the container

{ "mcpServers": { "agent-mcp-studio-export": { "command": "docker", "args": ["run","--rm","-i","-e","MCP_ALLOWED_HOSTS=api.github.com","agent-mcp-export"] } } }

The export also supports deploying to Fly.io, Railway, Render, Cloud Run, ECS, etc. The image defaults to stdio; for HTTP, see the README.

Who it's for: Developers building multi-agent systems who want a zero-infrastructure prototype-to-production pipeline, especially those experimenting with MCP and local-first AI.

📖 Read the full source: HN AI Agents

Ad

👀 See Also

Mímir: A Python Memory System Built on 21 Neuroscience Mechanisms
Tools

Mímir: A Python Memory System Built on 21 Neuroscience Mechanisms

Mímir is a Python memory system for AI agents that implements 21 cognitive science mechanisms like flashbulb memory and retrieval-induced forgetting. It uses a hybrid BM25 + semantic + date index and shows benchmark improvements including 13% higher tool accuracy on Mem2ActBench versus VividnessMem.

OpenClawRadar
OpenObscure: Open-Source On-Device Privacy Firewall for AI Agents
Tools

OpenObscure: Open-Source On-Device Privacy Firewall for AI Agents

OpenObscure is an open-source, on-device privacy firewall that sits between AI agents and LLM providers, using FF1 Format-Preserving Encryption to encrypt PII values before requests leave your device. It includes PII detection with 99.7% recall, cognitive firewall scanning, and runs on macOS/Linux/Windows with iOS/Android bindings.

OpenClawRadar
Claude Plugins: Computer Vision, Multi-Agent Council, and Self-Debugging Workflow
Tools

Claude Plugins: Computer Vision, Multi-Agent Council, and Self-Debugging Workflow

Three Claude plugins were released: Computer Vision v1.7.0 for Windows app automation, The Council v3.1.0 for adversarial multi-agent consultation, and Upwork Scraper v0.2.0 for job market analysis. A demonstration showed Claude using these plugins to diagnose and fix its own Solitaire automation bug.

OpenClawRadar
Codiff v0.1.0: A Local Diff Viewer for LLM-Generated Code Reviews
Tools

Codiff v0.1.0: A Local Diff Viewer for LLM-Generated Code Reviews

Codiff v0.1.0 is a fast, minimal desktop app for reviewing local Git diffs, with LLM walkthrough mode and inline comments that can be copied as Markdown.

OpenClawRadar