Agentweaver MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Agentweaver MCP Serverstart a new agent run to add error handling to the payment module"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Agentweaver
⚠️ Alpha software. Agentweaver is under active development. Expect breaking changes, incomplete features, and rough edges. Not intended for production use.
Agentweaver runs an AI agent on a task inside a sandboxed git worktree, streams every step live, and waits for human review before anything merges.
📖 Read the docs at sabbour.me/agentweaver — or browse the source in docs/index.md
Features
Sandboxed execution — every agent run lives in an isolated git worktree with Kata VM isolation on AKS
Live streaming — watch every agent step, tool call, and file change in real time
Human-in-the-loop review — nothing merges until you approve the assembled diff
Sandbox browser preview — open a live in-browser preview of the app running inside a run's sandbox (port-forward)
MCP server — expose Agentweaver runs and outcomes as MCP tools for Claude Desktop and compatible clients
Related MCP server: openclaw-tools-mcp
Quick start
Local dev — one command:
curl -fsSL https://raw.githubusercontent.com/sabbour/agentweaver/main/install.sh | bashirm https://raw.githubusercontent.com/sabbour/agentweaver/main/install.ps1 | iexDeploy to AKS — one command (requires az login + kubectl + envsubst + openssl):
curl -fsSL https://raw.githubusercontent.com/sabbour/agentweaver/main/install.sh | bash -s -- --aks& ([scriptblock]::Create((irm 'https://raw.githubusercontent.com/sabbour/agentweaver/main/install.ps1'))) -AksAKS flags:
--skip-postgres/-SkipPostgresand--skip-oauth-key/-SkipOauthKeyskip optional provisioning steps if those resources already exist.
Windows (PowerShell):
.\install.ps1 # local dev — checks prereqs, installs deps, launches start-dev.ps1
.\install.ps1 -Aks # AKS deploy (requires WSL2 + az login + kubectl)macOS / Linux (bash):
bash install.sh # local dev — checks prereqs, installs deps, prints start commands
bash install.sh --aks # AKS deploy (requires az login + kubectl + envsubst + openssl)Build & deploy
Local build
# Build the .NET solution
dotnet build agentweaver.sln
# Build the web frontend
npm --prefix apps/web run buildRun locally
Start each component from the repo root (three terminals):
# Terminal 1 — API backend
dotnet run --project apps/Agentweaver.Api
# Terminal 2 — MCP server (optional)
dotnet run --project apps/Agentweaver.Mcp
# Terminal 3 — Web UI (Vite dev server, hot reload)
npm --prefix apps/web run devWindows shortcut:
.\start-dev.ps1launches all three automatically.
Configure the GitHub OAuth client secret for local dev with .NET user-secrets (do not put it in appsettings*.json):
cd apps/Agentweaver.Api
dotnet user-secrets set "Auth:GitHub:ClientSecret" "<your-oauth-app-client-secret>"Deploy / redeploy to AKS
First deploy:
curl -fsSL https://raw.githubusercontent.com/sabbour/agentweaver/main/install.sh | bash -s -- --aksRedeploy with a new image tag (build, push, and redeploy in one command):
bash install.sh --aks --image-tag <git-sha>.\install.ps1 -Aks -ImageTag <git-sha>Never use
:latest. The default tag is the short git SHA (git rev-parse --short HEAD). Always pin to a specific SHA for reproducible deployments. Image tags are immutable per build.
Key docs
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sabbour/agentweaver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server