runeward
Allows replaying recorded terminal sessions in asciinema v2 format.
Provides a first-class adapter for CrewAI agents, enabling governed execution of tasks in isolated Citadels.
Provides a first-class adapter for LangChain agents, enabling governed execution of tasks in isolated Citadels.
Provides a first-class adapter for OpenAI Agents, enabling governed execution of tasks in isolated Citadels.
Provides a first-class adapter for the Vercel AI SDK, enabling governed execution of tasks in isolated Citadels.
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., "@runewardRun 'ls -la' in a new Citadel"
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.
Put enforceable policy, human approvals, isolated execution, budgets, and signed evidence around any AI agent. Runeward works with an existing agent or multi-agent framework rather than requiring a new model or orchestration stack.
Prove it in one command
Prerequisites: a running Docker/Podman engine and the runeward binary.
runeward quickstartThe command creates .runeward/quickstart.toml, checks the policy, runtime, image, and state path,
runs an allowed command, proves a destructive command is denied before execution, and verifies the
signed audit trail. It never overwrites an existing policy unless --force is passed.
doctor and dashboard readiness also resolve required secret sources. A Charter that references an
unset env:// value is not presented as launch-ready.
runeward doctor quickstart # explain setup problems safely
runeward --config-dir .runeward serve # dashboard + governed REST API
runeward evidence export quickstart -o run.json
runeward evidence verify run.json # independent policy/audit verificationRelated MCP server: declaw-mcp-server
What Runeward adds
Concern | Container alone | Runeward |
Tool calls | Executes what the process requests | Checks every shell, code, file, network, and browser action first |
Risky actions | Application-specific |
|
Network | Usually open unless separately configured | Deny-by-default hostname policy; strict L3 enforcement on Kubernetes |
Limits | CPU/memory | Wall-clock, exec, egress, token, cost, and retry-loop budgets |
Audit | Runtime logs | Append-only, hash-chained, Ed25519-signed events |
Handoff | Ad-hoc logs and folders | Workspace tar, recovery snapshots, and portable signed evidence JSON |
Agent identity | One opaque process | Tenant, actor, parent run, provider, model, and durable run lineage |
Interfaces | Runtime-specific | CLI, REST, MCP, web dashboard, Kubernetes CRDs, and local SDK adapters |
Every governed action follows one path:
agent request → policy → human approval when required → limits → sandbox → signed audit eventNaming
Documentation and UI use familiar terms first. Existing API paths and file fields retain the original themed names for compatibility.
Plain-language term | Runeward name | Existing surface |
Sandbox | Citadel |
|
Policy file/profile | Charter |
|
Approvals | Conclave |
|
Signed audit trail | Chronicle |
|
Network controls | Perimeter |
|
Budgets and limits | Rationing |
|
Agent group/fleet | Cohort |
|
See the full naming and writing convention.
Install
Choose the package that matches how you use Runeward:
Install with | What it installs | Command |
Runeward CLI for macOS or Linux |
| |
Python client and agent-framework adapters |
| |
TypeScript client and agent-framework tools |
|
For normal local use, install the CLI with Homebrew. For an agent integration, install the SDK for its language as well. The pip and npm packages connect to a running Runeward API; they do not replace the CLI/runtime.
Homebrew — CLI
Local sandboxes require a running Docker, OrbStack, or Podman engine.
brew install Runewardd/tap/runeward
runeward version
runeward quickstartpip — Python SDK
Requires Python 3.9 or newer. The base client has no third-party runtime dependencies.
python -m pip install runeward
python -c "import runeward; print(runeward.__version__)"npm — TypeScript SDK
Requires Node.js 18 or newer.
npm install @runeward/sdk
npm ls @runeward/sdkSee Adapters for LangChain, CrewAI, LlamaIndex, OpenAI Agents, Strands, Vercel AI SDK, and LangChain.js installation options.
Other CLI installation options
The signed macOS/Linux installer requires
cosign so it can fail closed while
verifying the checksum manifest. Windows binaries are available from
Releases.
curl -fsSL https://raw.githubusercontent.com/Runewardd/runeward/main/install.sh | shTo build the current main branch, use Go 1.26.6:
git clone https://github.com/Runewardd/runeward
cd runeward
go build -o bin/runeward ./cmd/runeward
./bin/runeward versionUse it with an agent
Expose governed tools to an MCP-capable IDE or agent:
{
"mcpServers": {
"runeward": {
"command": "runeward",
"args": ["mcp", "--config-dir", ".runeward"]
}
}
}Or place an agent CLI inside a sandbox and run one or many governed workers:
runeward cohort --agent claude --model sonnet build "Build a tested API"Adapters are included for LangChain, CrewAI, LlamaIndex, OpenAI Agents, Strands, Vercel AI SDK, and LangChain.js. See Adapters and agent groups.
The dashboard also has a read-only Live chat TTY for each Citadel. Agent harnesses publish
user, assistant, tool, and system turns with runeward_publish_conversation (or the REST,
Python, and TypeScript equivalents), and authorized teammates can follow the redacted conversation
without terminal input access. Runeward cannot infer private UI chat text that the agent client does
not publish; wire the publish call into the harness turn callback. The publisher must connect to the
same runeward serve control plane as the dashboard (through /mcp, REST, or an SDK).
Harness agents and subagents
Runeward is the enforcement boundary around an agent, not the component that decides how the agent reasons. Route the tool calls of a parent agent and each delegated subagent through Runeward to give them explicit policy, approval, isolation, budget, and evidence boundaries.
Existing concepts keep their meaning: a Cohort is a group of peer workers sharing a task board; it is not being renamed to “subagents.” The orchestrator still decides when to delegate, while Runeward records the parent/run/provider lineage and prevents a child Citadel from widening its parent's tenant or Charter. Every participating agent can receive its own Citadel and Chronicle. See Agent harnessing.
Policy workflow
Policies support built-in glob rules, CEL, OPA/Rego, and signed OCI bundles. Test them in CI, start from a reviewed scaffold, or derive exact proposals from verified production evidence:
runeward policy scaffold package-approval
runeward policy test quickstart --case 'tool=shell,action=rm -rf /,expect=deny'
runeward policy learn run.json > proposed-policy.tomlpolicy learn never edits a policy automatically. It verifies the evidence first, skips redacted
actions, produces exact matches, and requires a human to review and broaden them.
Security posture
The server binds to loopback by default and requires authentication before a non-loopback bind.
Non-loopback HTTP also requires TLS unless
--allow-insecure-httpexplicitly acknowledges that a trusted reverse proxy terminates TLS.Multi-principal RBAC scopes sandboxes, agent groups, recovery snapshots, and dashboard views to their tenant while attributing every operation to its actor. Static tokens and OIDC JWTs use the same authorization model, and embedded HTTP MCP shares the REST ownership checks.
Browser automation is experimental and disabled by default. Enable it only in a trusted deployment with
RUNEWARD_ENABLE_EXPERIMENTAL_BROWSER=1after reviewing the security model. Browser-capable Charters declarecapabilities = ["browser"]; the dashboard then exposes governed rendered-text and screenshot actions and their policy/egress results.An optional browser IDE (code-server in-cell + ticketed reverse proxy) is similarly experimental:
RUNEWARD_ENABLE_EXPERIMENTAL_IDE=1, Charter[ide],Dockerfile.idetargetside/ide-agents, exampleside-demo/ide-claude/ide-codex/ide-cursor. Limits: not per-keystroke policy; no Cursor/Claude Desktop/Codex GUIs in-cell; no first-class GitHub Copilot on code-server. See Browser IDE and the security model.Per-action policy applies to tool calls routed through the control plane (REST, MCP, dashboard file/shell/code actions, and SDKs). An interactive terminal or a process already running inside a sandbox is a direct sandbox session: it receives isolation/network/resource controls and terminal recording, but its individual commands are not intercepted for approval. Use governed tool calls when command-level policy and signed verdicts are required.
Report vulnerabilities privately using SECURITY.md. Runeward remains pre-1.0; residual limitations are tracked in ROADMAP.md.
Documentation
Browser IDE (experimental code-server proxy)
Published site: runewardd.github.io/runeward
Contributions are welcome; see CONTRIBUTING.md. Licensed under Apache 2.0.
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.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceA transparent proxy and execution firewall that intercepts and audits AI agent tool calls against configurable security policies before forwarding them to downstream MCP servers. It provides safe execution environments with features like data redaction, anti-loop protection, and unified alert dispatching.

declaw-mcp-serverofficial
AlicenseAqualityBmaintenanceRuns AI-generated code in secure Firecracker microVMs with opt-in network policy enforcement, PII scanning, prompt injection defense, and audit logging. Exposes MCP tools for running commands, managing files, and the full sandbox lifecycle.7461Apache 2.0
evav-gatewayofficial
AlicenseNot gradedqualityBmaintenanceGoverned MCP gateway that lets AI agents call tools with policy enforcement, prompt-injection screening, a kill-switch, and tamper-evident signed audit logs.Apache 2.0- FlicenseNot gradedqualityBmaintenanceProvides a secure MCP boundary for AI agents, intercepting and validating tool calls, redacting secrets, and requiring human approval for sensitive actions with a tamper-evident audit trail.
Related MCP Connectors
Runtime permission, approval, and audit layer for AI agent tool execution.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Security firewall for AI agents — scans MCP calls for injection, secrets, and risks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Runewardd/runeward'
If you have feedback or need assistance with the MCP directory API, please join our Discord server