AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Demesne

mcp-jbeshir-demesne · by jbeshir

MCP server for running heterogeneous AI agents and shell commands in local disposable OpenSandbox containers

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add mcp-jbeshir-demesne

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-jbeshir-demesne)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
25d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Demesne? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Demesne

An agent-agnostic, local, containerised agent-orchestration MCP server you drive from your agent of choice. It runs untrusted shell, scripts, and AI coding agents in disposable containers, decoupling agent reasoning from execution effects. Host mounts are read-only; outbound network access is governed by egress allowlists.

[](LICENSE) [](https://github.com/jbeshir/demesne/releases/latest) [](https://github.com/jbeshir/demesne/actions/workflows/ci.yml)

> [!WARNING] > Alpha — best-effort. demesne is early software, and is largely built using itself (its own containerised agents do much of the work). Expect rough edges, gaps, and breaking changes between versions. Treat it as alpha and best-effort, and review what it does before relying on it.

What you can do

Ask your agent to run through demesne:

  • One-off scripts — execute a shell command in a fresh sandbox and collect output. [Example](examples/hello-script/)
  • Headless React-widget rendering — render and screenshot a React widget inside a sandbox via the demesne-built browser image (Playwright + Chromium + Node 22, works at egress=none). [How-to](docs/how-to/render-react-ui.md)
  • Video / audio / image conversion — transcode, convert, and manipulate media inside a sandbox via the demesne-built media image (ffmpeg + ImageMagick + libvips + audio tooling, works at egress=none). [How-to](docs/how-to/convert-media.md)
  • Offline interactive-fiction build/playtest — compile a Twine story and playtest it headlessly via the demesne-built twine image (Tweego + Twine story formats + Chromium, works at egress=none). [Reference](docs/reference/configuration.md#container-images)
  • Offline HTML5-game build/playtest — build and playtest a web game via the demesne-built webgamedev image (a warm Phaser + Vite + TypeScript template + Chromium, works at egress=none). [Reference](docs/reference/configuration.md#container-images)
  • Long-running research with open internet — spawn a research agent with unrestricted outbound access. [Reference](docs/reference/tools/sandbox_research.md)
  • Delegated coding-agent tasks — hand off a prompt to a sub-agent running inside a sandbox. [Example](examples/sandbox-agent-hello/)
  • Persistent sessions — create a sandbox, run multiple commands, upload/download files, then destroy it. [Example](examples/persistent-session/)
  • Multi-agent orchestration — the orchestrator agent is itself a containerised run that spawns child sandboxes for its workers and verifier, dispatching tasks and judging results across the tree. [Example](examples/sandbox-agent-verifier/)
  • Ready-made orchestration skills — a library of SKILL.md pipeline definitions (migration sweeps, corpus map-reduce, document ETL, and more) to drop into your agent and adapt. Pre-alpha: in principle ready to use but largely untested — regard them as examples of what could be tried. [Example skills](examples/skills/)

Together these let your agent take on larger tasks more autonomously: you can push security-review-awkward script execution, autonomous research, and entire multi-agent pipelines into containers that run with no permission prompts — much of the autonomy you'd otherwise reach for --dangerously-skip-permissions to get, but with the host kept at arm's length by a container boundary, read-only mounts, and egress allowlists. (That boundary is container-level isolation, not a hard security guarantee — see [SECURITY.md](SECURITY.md).) And you don't pre-declare the pipeline: your agent composes the orchestration prompt itself for the task at hand, and the containerised orchestrator adapts the layout and subagents as it runs.

How it works

Containerised agents can themselves spawn sandboxes, and — with appropriate configuration — get a read-only subset of your host's MCP server tools proxied in through a per-sandbox tunnel. See [docs/reference/nested-sandboxes.md](docs/reference/nested-sandboxes.md).

Get started

a. Install the binary

Download a release binary from the GitHub releases page. Builds are available for linux/amd64, darwin/amd64, darwin/arm64, and windows/amd64.

To build from source instead, see [CONTRIBUTING.md](CONTRIBUTING.md).

b. Run a local OpenSandbox

demesne needs a running OpenSandbox instance. See [docs/reference/requirements.md](docs/reference/requirements.md) for prerequisites; Step 2 of the [Quickstart](docs/tutorial/quickstart.md) walks through launching one locally.

c. Wire into Claude Code or Codex

See [docs/how-to/wire-into-mcp-client.md](docs/how-to/wire-into-mcp-client.md) for the per-client config snippets and full env var reference.

For the full walkthrough, see [Quickstart](docs/tutorial/quickstart.md).

Tools

| Tool | Description | Reference | |--------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----| | sandbox_script | Run a shell command in a fresh sandbox and tear it down. Returns exit code, stdout, stderr, and the /out host path. | [ref](docs/reference/tools/sandboxscript.md) | | sandbox_create | Create a persistent sandbox. Returns a sandbox_id handle and the /out host path. TTL is 48h, refreshed by each sandbox_exec. | [ref](docs/reference/tools/sandboxcreate.md) | | sandbox_exec | Run a shell command in an existing sandbox. Refreshes TTL. Returns exit code, stdout, and stderr. | [ref](docs/reference/tools/sandboxexec.md) | | sandbox_upload | Copy a host file into an existing sandbox. | [ref](docs/reference/tools/sandboxupload.md) | | sandbox_download | Copy a file out of an existing sandbox; written under /downloads/. Returns the host path. | [ref](docs/reference/tools/sandboxdownload.md) | | sandbox_destroy | Kill an existing sandbox. Host output dir is preserved. | [ref](docs/reference/tools/sandboxdestroy.md) | | sandbox_agent | Run an AI coding agent in a fresh sandbox against a caller-supplied prompt. Provider is inferred from model (defaults to codex/gpt-5.6-sol when Codex credentials are configured, otherwise claude-code/sonnet). Outbound HTTPS is restricted to the vendor proxy. Returns exit code, stdout, stderr, the /out host path, and the (indicative) cost summary. | [ref](docs/reference/tools/sandboxagent.md) | | sandbox_research | Run a long-running research agent with no input mounts and unrestricted outbound internet access. Returns exit code, stdout, stderr, the /out host path, and the (indicative) cost summary. | [ref](docs/reference/tools/sandboxresearch.md) |

Background / async jobs

All three spawn tools (sandbox_script, sandbox_agent, sandbox_research) accept an optional background: true parameter. When set, the tool returns immediately with {job_id, status: "running"} instead of blocking. Use the complementary job-control tools to manage the run:

| Tool | Description | |------|-------------| | sandbox_status | Non-blocking snapshot of status, elapsed time, stdout tail, and cost. | | sandbox_wait | Block up to timeout_seconds (default 30, max 120) for a terminal state; returns the final result or a "still running" sentinel if the timeout elapses. Call in a loop to poll. | | sandbox_cancel | Cancel the job and its entire descendant subtree; idempotent on already-terminal jobs. |

Synchronous calls may run to completion (subject to the explicit 48h runtime limit) and remain cancellable. Use background: true for concurrent work, detachment, status/progress polling, or deliberate job control. sandbox_wait is a bounded poll (30s default, 120s maximum), not a runtime limit. The job registry is in-memory; jobs do NOT survive MCP-server restarts (a stale job_id returns an error after restart); completed jobs are retained ~1h via a TTL reaper.

For a step-by-step walkthrough of the persistent-sandbox lifecycle, see the [Quickstart](docs/tutorial/quickstart.md) and the [sandbox_create](docs/reference/tools/sandboxcreate.md) / [sandbox_exec](docs/reference/tools/sandboxexec.md) reference pages.

Docs

| | | |---|---| | [Quickstart](docs/tutorial/quickstart.md) | Five steps to your first sandbox_script call | | [Docs](docs/) | Tutorials, how-to recipes, reference, explanation | | [Examples](examples/) | Runnable example calls | | [Example skills](examples/skills/) | Ready-to-use orchestration pipelines you can adapt (pre-alpha) |

Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for building from source, linting, and tests.

Status

See [CHANGELOG.md](CHANGELOG.md) for milestone history.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.