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

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 fromos.environ.get(...)calls.
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
👀 See Also

클로이언: Claude Max 지원 및 GitHub 통합 기능을 갖춘 OpenClaw 래퍼
Clawion은 API 키 없이 Claude Max를 지원하는 OpenClaw 래퍼입니다. 설정 과정은 템플릿 선택, Telegram 연결, 그리고 자동 PR 생성을 위한 GitHub 통합이 포함된 코드 동반자를 배포하는 것으로 구성됩니다.

StarSteady: AI 기반 구글 리뷰 응답 및 지역 비즈니스를 위한 SMS 요청
StarSteady는 Google/Yelp 리뷰에 AI 생성 답변을 제공하고 고객에게 SMS 리뷰 요청을 보내는 개인 개발 SaaS로, 월 39달러부터 시작하며 5개의 답변과 5개의 SMS를 제공하는 무료 체험판이 있습니다.

HuggingFace 에이전트 스킬: 코딩 에이전트를 위한 표준화된 AI 작업 정의
HuggingFace Skills는 YAML 프론트매터와 AI 에이전트가 데이터셋 생성, 모델 학습, 평가와 같은 특정 ML 작업을 수행하기 위한 지침을 포함한 자체 포함 폴더입니다. 이들은 OpenAI Codex, Anthropic의 Claude Code, Google Gemini CLI 및 Cursor와 상호 운용 가능합니다.

LLM 회로 탐색기: 학습 없이 추론 능력 향상을 위해 3개의 레이어를 복제합니다
새로운 툴킷이 트랜스포머 모델에서 '추론 회로'를 발견합니다. 이는 분리할 수 없는 인지 단위로 작동하는 3-4개의 연속적인 레이어 블록입니다. Devstral-24B의 12-14 레이어 블록을 복제하면 가중치 변경이나 학습 없이 BBH 벤치마크의 논리적 추론 점수가 0.22에서 0.76으로 향상됩니다.