Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Agentweaver Server

FreeNot checked

Exposes Agentweaver runs and outcomes as MCP tools for Claude Desktop and compatible clients.

GitHubEmbed

About

Exposes Agentweaver runs and outcomes as MCP tools for Claude Desktop and compatible clients.

README

Agentweaver logo

Agentweaver

⚠️ Alpha software. Agentweaver is under active development. Expect breaking changes, incomplete features, and rough edges. Not intended for production use.

Agentweaver runs AI agents inside sandboxed git worktrees, mirrors run events into a shared store so any replica can stream them 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 from any replica
  • 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

Quick start

Local dev — one command:

curl -fsSL https://raw.githubusercontent.com/sabbour/agentweaver/main/install.sh | bash
irm https://raw.githubusercontent.com/sabbour/agentweaver/main/install.ps1 | iex

Deploy 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'))) -Aks

AKS flags: --skip-postgres / -SkipPostgres and --skip-oauth-key / -SkipOauthKey skip optional provisioning steps if those resources already exist.

From a cloned checkout

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 build

Run 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 dev

Windows shortcut: .\start-dev.ps1 launches 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 -- --aks

Redeploy 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.

AKS architecture

Block diagram

block-beta
  columns 3

  Client(["🌐 Client"])
  space
  GitHub(["GitHub"])

  block:aks["AKS Cluster"]:3
    columns 3
    block:core["Core Services"]:2
      columns 2
      fe["Frontend ×2"]
      api["API ×2"]
      worker["Worker ×1+HPA"]
      mcp["MCP ×1"]
    end
    block:kata["Kata VM Pool"]:1
      ah["AgentHost\nWarm Pool ×2"]
    end
    block:storage["Shared Storage"]:3
      columns 2
      pvc[("Workspace PVC")]
      csi["CSI SecretProvider"]
    end
  end

  pg[("PostgreSQL")]
  kv["Key Vault"]
  acr["ACR"]

Full component breakdown, networking, security model, and warm-pool lifecycle: AKS Architecture →

Key docs

from github.com/sabbour/agentweaver

Installing Agentweaver Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/sabbour/agentweaver

FAQ

Is Agentweaver Server MCP free?

Yes, Agentweaver Server MCP is free — one-click install via Unyly at no cost.

Does Agentweaver Server need an API key?

No, Agentweaver Server runs without API keys or environment variables.

Is Agentweaver Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Agentweaver Server in Claude Desktop, Claude Code or Cursor?

Open Agentweaver Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Agentweaver Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs