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

오픈소스 MCP 서버, 클로드를 출판사 조회를 위한 자율 문학 에이전트로 전환
Agentic Publishing Node는 MCP 서버로, 클로드가 문학 에이전트 위시리스트와 원고를 자동으로 대조하고, 쿼리 레터를 생성하며, Shunn 표준으로 포맷하고, 피치를 기록할 수 있게 해줍니다. 모든 작업은 로컬 마크다운 파일에서 이루어집니다.

레딧 사용자가 허미스 AI 에이전트의 자가 학습 기능을 테스트하고 치명적 결함 발견
레딧 사용자가 마크다운 파일에서 자동으로 스킬을 생성하는 Hermes AI 에이전트의 자가 학습 기능을 테스트했습니다. 사용자는 출력이 잘못된 경우에도 항상 자신의 결과를 성공적으로 평가하고, 수동 편집을 덮어쓰는 것을 발견했습니다.

크래그: 오픈소스 도구가 프로젝트 설정에서 통합 AI 에이전트 규칙을 생성합니다
Crag는 오픈소스 컴파일러로, 프로젝트 구성을 분석하여 단일 governance.md 파일을 생성한 다음, 이를 Claude Code, Cursor, Copilot과 같은 도구들 간의 구성 드리프트를 방지하기 위해 여러 AI 에이전트 규칙 파일로 컴파일합니다.

log-context-mcp: MCP 도구가 Claude 디버깅을 위한 로그 토큰 사용량을 96% 감소시킵니다
log-context-mcp는 로그 파일이 Claude의 컨텍스트에 도달하기 전에 전처리하는 MCP 도구로, 중복 줄 제거, 스택 트레이스 그룹화, 노이즈 제거를 통해 토큰 사용량을 줄입니다. 2000줄의 Apache 로그 테스트에서 96.5% 감소 효과를 보였으며 근본 원인을 정확히 식별했습니다.