OpenClaw
Give a local, autonomous personal agent an identity, a permission surface and an audit trail, through the skill and plugin OpenClaw already loads.
OpenClaw Integration
Give your OpenClaw agent a cryptographic identity, enforce permissions before sensitive actions, and log a tamper-proof audit trail. Works as a skill via mcporter + MCP server.
Setup
Step 1: Create an account at vorim.ai and get your API key from Settings → API Keys.
Step 2: Add the Vorim MCP server to your OpenClaw instance:
# Add Vorim as an MCP server via mcporter
mcporter config add vorim --stdio "npx -y @vorim/mcp-server"
# Set your API key
export VORIM_API_KEY=agid_sk_live_...bashOr install the Vorim skill for automatic identity and audit behavior:
# Copy the skill to your OpenClaw skills directory
mkdir -p ~/.openclaw/skills/vorim
# Add SKILL.md from github.com/Vorim-AI-Labs/vorim-mcp-serverbashUsage
Once configured, your OpenClaw agent can use all 19 Vorim tools via mcporter:
# Register your agent (first run)
mcporter call vorim.vorim_register_agent name="my-openclaw" \
capabilities:='["browse","email","shell"]' \
scopes:='["agent:read","agent:write","agent:execute"]'
# Check permission before a sensitive action
mcporter call vorim.vorim_check_permission \
agent_id="agid_..." scope="agent:execute"
# Log an action to the audit trail
mcporter call vorim.vorim_emit_event \
agent_id="agid_..." event_type="tool_call" \
action="send_email" result="success"
# Verify trust score
mcporter call vorim.vorim_verify_trust agent_id="agid_..."bashWhat the Skill Does
- Permission checks — before shell commands, emails, payments, or any destructive action
- Audit logging — every action is recorded to an append-only audit trail, and can be cryptographically signed (Ed25519) for tamper-evidence
- Trust verification — external services can verify your agent before interacting
- Denied actions are blocked — if permission is denied, the agent stops and informs the user
Book a demo for a walkthrough, or contact us for support. For enterprise needs, reach out at sales@vorim.ai.