Developer Resources

Everything you need to integrate HSM-backed secret management and multi-chain transaction signing into your AI agents and applications.

Quick Start

MCP (Claude, Cursor, VS Code)

{
  "mcpServers": {
    "1claw": {
      "command": "npx",
      "args": ["-y", "@1claw/mcp"],
      "env": {
        "ONECLAW_AGENT_API_KEY": "ocv_..."
      }
    }
  }
}

TypeScript SDK

import { OneclawClient } from "@1claw/sdk";

const client = new OneclawClient({
  apiKey: "ocv_your_key",
});

const secret = await client.secrets.get(
  "vault-id", "api-keys/openai"
);

Quick Links