Quickstart

Connect your first agent and see governed activity in a few minutes.

Veragent is a vendor-neutral control plane for AI agents — you send your agent's activity to Veragent, and you get audit trails, policy enforcement, and compliance evidence over it. The SDKs are dependency-free and work with any framework. Here's the whole flow end to end.

1. Install the SDK

Pick your language — the wire format is identical, so you can mix agents across both.

Python

pip install veragent

Node

npm install veragent

2. Set your API key

Create an agent API key in your dashboard (Agents → API keys), then expose it to your environment. Keys are scoped to your organisation and never leave it.

macOS / Linux

export VERAGENT_API_KEY="vak_your_key_here"

Windows (PowerShell)

$env:VERAGENT_API_KEY = "vak_your_key_here"

3. Send your first event

Create a client and record an action. The SDK reads VERAGENT_API_KEY from the environment automatically, and tracking is non-blocking — it never slows or crashes your agent.

Python

from veragent import Veragent

va = Veragent(agent="my-agent")
va.track("answered question", event_type="tool_call", tool="search")

Node

import { Veragent } from "veragent";

const va = new Veragent({ agent: "my-agent" });
va.track("answered question", { eventType: "tool_call", tool: "search" });

4. See it in your dashboard

Open the audit log in your Veragent dashboard — your event appears within seconds, attributed to the agent you named. From there you can write policies, set alerts, and generate compliance evidence over the same activity.

Framework adapters

If you build on a framework, Veragent ships drop-in adapters so you don't have to instrument calls by hand. Install the matching extra (Python) or import the matching subpath (Node):

Python

  • LangChainpip install "veragent[langchain]"
  • OpenAI Agentspip install "veragent[openai-agents]"
  • MCPpip install "veragent[mcp]"
  • CrewAIpip install "veragent[crewai]"

Node

  • Vercel AI SDKveragent/vercel-ai
  • MCPveragent/mcp
  • LangChain.jsveragent/langchain

Copy-paste examples for each framework are in the integration guide inside the app.

Ready to start?

Create a free account to get your API key, or read how we handle your data on our Security & Trust page.