Skip to main content

The Identity & Reputation Standard for AI Agents

Project description

Vouch Protocol

Discord Spec: Community Client: Apache 2.0 Server: AGPL-3.0 Status

The Open Standard for AI Agent Identity & Accountability

When Anthropic launched MCP, they solved "how agents call tools."
They didn't solve "how we TRUST those agents."

Vouch Protocol is the SSL certificate for AI agents.

Read the spec → | Join Discord →


The Problem

AI agents are making real-world API calls with ZERO cryptographic proof of:

  • WHO they are
  • WHAT they intended to do
  • WHEN they did it

Examples of the risk:

  • Healthcare AI accesses patient data → HIPAA violation risk
  • Financial AI makes unauthorized trades → Liability nightmare
  • Customer service AI leaks data → Compliance failure

Current solutions:

  • DIY JWT signing → No agent-specific features, security mistakes easy
  • Nothing → Most people just YOLO it and hope for the best

The Solution

Vouch Protocol provides cryptographic identity for AI agents, modeled after SSL/TLS:

Ed25519 signatures (industry-standard cryptography)
JWK key format (works with existing infrastructure)
Audit trail (cryptographic proof of every action)
Framework-agnostic (works with MCP, LangChain, CrewAI, etc.)
Open source (Apache 2.0 license)

Think of it as:

  • SSL certificate = Proves website identity
  • Vouch Protocol = Proves AI agent identity

Why Vouch Protocol?

vs. DIY JWT

Feature Vouch Protocol DIY JWT
Agent-specific ✅ (designed for agents) ❌ (generic)
MCP integration ✅ (native) ❌ (manual)
Framework integrations ✅ (LangChain, CrewAI, etc.)
Audit trail format ✅ (standardized) ❌ (custom)
Security best practices ✅ (built-in) ⚠️ (easy to mess up)

Quick Start

1. Install

pip install vouch-protocol

2. Generate Identity

vouch init --domain your-agent.com

3. Sign an Action (Agent Side)

from vouch import Signer
import os

signer = Signer(
    private_key=os.environ['VOUCH_PRIVATE_KEY'],
    did=os.environ['VOUCH_DID']
)

token = signer.sign({'action': 'read_database', 'target': 'users'})
# Include token in Vouch-Token header

4. Verify (API Side)

from fastapi import FastAPI, Header, HTTPException
from vouch import Verifier

app = FastAPI()

@app.post("/api/resource")
def protected_route(vouch_token: str = Header(alias="Vouch-Token")):
    public_key = '{"kty":"OKP"...}' # From agent's vouch.json
    
    is_valid, passport = Verifier.verify(vouch_token, public_key_jwk=public_key)
    
    if not is_valid:
        raise HTTPException(status_code=401, detail="Untrusted Agent")
        
    return {"status": "Verified", "agent": passport.sub}

That's it. 3 lines to sign, 3 lines to verify.


Integrations

Works with all major AI frameworks out-of-the-box:

  • Model Context Protocol (MCP) - Native integration for Claude Desktop & Cursor
  • LangChain - Sign tool calls automatically
  • CrewAI - Multi-agent identity management
  • AutoGPT - Autonomous agent signing
  • AutoGen - Microsoft multi-agent framework
  • Google Vertex AI - Sign function calls
  • n8n - Low-code agent workflows

See all integrations →


Enterprise Features

  • 🔐 Key Rotation - Automatic rotating keys for production
  • 🎙️ Voice AI Signing - Sign audio frames in real-time
  • ☁️ Cloud KMS - AWS KMS, GCP Cloud KMS, Azure Key Vault
  • 📊 Reputation Scoring - Track agent behavior over time
  • 🚫 Revocation Registry - Blacklist compromised keys
  • Redis Caching - Production-scale verification

📜 License & Legal

This project uses a 3-layer license structure to balance open collaboration and sustainability:

  1. Specification: Community Specification License 1.0

    • The protocol standard (open for anyone to implement)
  2. Client SDK: Apache License 2.0

    • The reference implementation (permissive for all uses)
  3. Server SDK: AGPL-3.0 OR Commercial License

    • Network-facing components (pass-forward obligation OR paid license)

TL;DR for developers:

  • ✅ Using the client library? Apache 2.0 (use freely, even in closed-source)
  • ✅ Implementing the protocol yourself? Community Spec License (open standard)
  • ⚠️ Running the server component? AGPL (open-source your server) OR contact us for commercial license

Default LICENSE: This repository's main LICENSE file is Apache 2.0 for maximum compatibility. See individual components for specific licenses.

View licenses/ directory

Defensive Disclosure (Prior Art)

Publication Date: December 14, 2025
Subject: Cryptographic Binding of AI Agent Intent via Model Context Protocol (MCP)

To ensure the freedom of the ecosystem to build secure agents, we explicitly disclose the following novel method as Prior Art:

  1. The "Identity Sidecar" Pattern: An MCP Server acting as a local "Identity Proxy" for a stateless LLM, isolating keys from application code.
  2. Just-in-Time (JIT) Intent Signing: A workflow where the LLM requests a signed "Vouch-Token" for a specific action before execution.
  3. Non-Repudiation: Generating a cryptographically verifiable audit trail binding Identity, Intent, and Time.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vouch_protocol-1.3.0.tar.gz (65.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vouch_protocol-1.3.0-py3-none-any.whl (66.7 kB view details)

Uploaded Python 3

File details

Details for the file vouch_protocol-1.3.0.tar.gz.

File metadata

  • Download URL: vouch_protocol-1.3.0.tar.gz
  • Upload date:
  • Size: 65.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for vouch_protocol-1.3.0.tar.gz
Algorithm Hash digest
SHA256 a14a38a9d56768ff9a0c985bc900b75c5cff81b3955995aca69c76e062e7d8d0
MD5 2ba572060b807651b4ba3ad35667a053
BLAKE2b-256 01f3391abb5ddd68df926e9e87ae74101cb3fa4b5997188b2497a9c5d06bfee3

See more details on using hashes here.

File details

Details for the file vouch_protocol-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: vouch_protocol-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 66.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for vouch_protocol-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 81f59d8fbee116de79f9d8462d61794bf8a9ed9c6571b946d2498b6431c686b9
MD5 54fff17d03fdaa6e3ef915750c0bfbfb
BLAKE2b-256 4f652be39d0b59c8a490e3db9815503d84b2814f1d7fe7626b13abdd8cb3dc99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page