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

✍️ OpenClawRadar📅 게시일: 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

Equibles: 미국 금융 데이터를 위한 자체 호스팅 MCP 서버 – SEC 서류, 13F, 내부자 거래, FRED
Tools

Equibles: 미국 금융 데이터를 위한 자체 호스팅 MCP 서버 – SEC 서류, 13F, 내부자 거래, FRED

Equibles는 공개 미국 금융 데이터(SEC 신고, 13F, 내부자/의회 거래, 공매도 데이터, FRED)를 스크랩하여 모든 로컬 LLM 에이전트에 MCP 도구로 제공하는 오픈소스 MCP 서버입니다.

OpenClawRadar
Voxray-AI: 실시간 음성 에이전트 파이프라인을 위한 프로덕션 Go 백엔드
Tools

Voxray-AI: 실시간 음성 에이전트 파이프라인을 위한 프로덕션 Go 백엔드

Voxray-AI는 WebSocket 및 WebRTC 지원과 함께 Whisper → 임의의 LLM → TTS를 실시간 음성 에이전트 파이프라인으로 연결하는 Go 백엔드입니다. 이는 프로덕션 등급 서버와 높은 동시성 음성 워크로드를 위해 설계되었으며, STT, LLM, TTS 계층에 대한 구성 가능한 제공업체를 갖추고 있습니다.

OpenClawRadar
OpenClaw: 지속적인 감시로 웹사이트 유지 관리를 혁신하다
Tools

OpenClaw: 지속적인 감시로 웹사이트 유지 관리를 혁신하다

혁신적인 AI 기반 에이전시인 OpenClaw는 끊임없이 24시간 가동하여 웹사이트 유지 관리를 재정의합니다. 고급 자동화를 활용하여 최적의 웹사이트 기능을 보장하고 문제를 신속하게 해결합니다.

OpenClawRadar
로컬 Qwen 3.6 27B를 Codex 검증 공동 에이전트로 벤치마킹하기
Tools

로컬 Qwen 3.6 27B를 Codex 검증 공동 에이전트로 벤치마킹하기

한 개발자가 Qwen 3.6 27B GGUF 프로파일(llama.cpp)을 Codex의 사이드카 검증기로 테스트하기 위해 재현 가능한 평가 스위트를 구축했으며, 긴 컨텍스트 작업에는 128k 컨텍스트 프로파일이 필요하고 q8 KV 캐시에서는 정확도 손실이 거의 없음을 발견했습니다.

OpenClawRadar