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.
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 |
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.5:
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.
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.” Parent/child delegation remains the orchestrator's concern today, while every participating agent can receive the same or a stricter Charter and 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.
Multi-principal RBAC scopes sandboxes, agent groups, recovery snapshots, and dashboard views to their owner. Embedded HTTP MCP is disabled when RBAC is enabled because its authorization context is not yet unified; run a separately scoped MCP service if needed.
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.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. Known pre-1.0 limitations and remediation work remain visible in ROADMAP.md.
Documentation
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
- Flicense-quality-maintenanceA 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.Last updated

declaw-mcp-serverofficial
Alicense-qualityBmaintenanceRuns 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.Last updated711Apache 2.0- AlicenseAqualityAmaintenanceGoverned Kubernetes operations for AI agents with 15 MCP tools, audit logging, policy engine, and safety features.Last updated55MIT
- AlicenseBqualityAmaintenanceA governance proxy for AI tools — every MCP/agent tool call is policy-gated, secret-redacted, and written to a hash-chained, offline-verifiable audit trail.Last updated13MIT
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