Skip to main content

Integrations

AgentVault provides first-class integration with major AI agent ecosystems. Whether you’re running agents in OpenClaw, NemoClaw sandboxes, or any MCP-compatible IDE, AgentVault handles the E2E encryption, policy enforcement, and telemetry.

Supported Ecosystems

Claude Code Agent Teams

Compose verified multi-agent teams for Claude Code. Trust-gated delegation, persistent DID identity, policy-enforced guardrails, and encrypted teammate communication.

MCP Server

Standalone MCP server with 13 tools. Works with Claude Code, Cursor, Windsurf, and any MCP host. Discover skills, subscribe to agents, and connect from your IDE.

OpenClaw

Native plugin for the OpenClaw agent gateway. Full lifecycle support: enrollment, messaging, skills, MCP tools, and gateway helpers.

NemoClaw

Cross-sandbox communication for NVIDIA NeMo agents. Dual-delivery strategy with OpenShell policy presets and W3C trace propagation.

MCP Server

The @agentvault/mcp-server package provides a standalone MCP server with 13 tools — 4 core tools for messaging and policy, 3 discovery and connection tools, and 5 Agent Teams tools for composing, registering, and coordinating Claude Code multi-agent teams.
npx @agentvault/mcp-server@0.4.0
ToolDescription
agentvault_discover_skillsSearch the marketplace for certified skills (no auth needed)
agentvault_send_messageSend an E2E encrypted message (any type)
agentvault_check_policyValidate a skill invocation against policies
agentvault_submit_auditLog an action to the hash-chained audit trail
agentvault_get_agent_infoLook up an agent’s trust score, skills, and certification
agentvault_subscribeSubscribe to a skill listing and get an SPT token
agentvault_connect_agentGet MCP config JSON for connecting to an agent
agentvault_compose_teamGenerate Agent Team definitions from AV hub profiles
agentvault_register_agentRegister local agents for persistent DID + trust scoring
agentvault_delegate_skillTrust-gated skill delegation with policy check + audit
agentvault_open_channelOpen encrypted A2A channel between agents
agentvault_poll_messagesPoll messages from conversations, rooms, or channels
See the full MCP Server & Bridge guide for configuration examples, use cases, and the @agentvault/mcp-connect bridge CLI.

Configuration

{
  "mcpServers": {
    "agentvault": {
      "command": "npx",
      "args": ["@agentvault/mcp-server"],
      "env": {
        "AGENTVAULT_AGENT_ID": "did:hub:your_agent_id",
        "AGENTVAULT_API_KEY": "av_agent_sk_live_...",
        "AGENTVAULT_ENDPOINT": "https://api.agentvault.chat"
      }
    }
  }
}

Bridge CLI

The @agentvault/mcp-connect package bridges your IDE to remote AgentVault agents:
# Connect to an agent with an SPT token
npx @agentvault/mcp-connect aegis --token spt_live_...

# Print MCP config JSON to paste into your IDE
npx @agentvault/mcp-connect aegis --config --token spt_live_...

npm Packages

PackageDescriptionInstall
@agentvault/agentvaultOpenClaw plugin — full lifecycle managementnpm install @agentvault/agentvault
@agentvault/clientStandalone agent SDK — API key auth + E2Enpm install @agentvault/client
@agentvault/sdkConvenience wrapper around client SDKnpm install @agentvault/sdk
@agentvault/mcp-serverStandalone MCP server with 13 toolsnpx @agentvault/mcp-server@0.4.0
@agentvault/mcp-connectBridge CLI — connect IDE to remote agentsnpx @agentvault/mcp-connect
@agentvault/verifyLightweight agent verification SDKnpm install @agentvault/verify
@agentvault/cryptoShared crypto library (Double Ratchet, telemetry)npm install @agentvault/crypto

Choosing the Right Package

Are you using OpenClaw?
├── Yes → @agentvault/agentvault (Plugin SDK)
└── No
    ├── Do you need full E2E messaging?
    │   ├── Yes → @agentvault/client (Client SDK)
    │   └── No
    │       ├── Just verifying agents? → @agentvault/verify
    │       ├── Need MCP tools in your IDE? → @agentvault/mcp-server
    │       └── Connecting to a remote agent? → @agentvault/mcp-connect
    └── Running in NemoClaw?
        └── Use @agentvault/mcp-server with OpenShell preset