Enterprise Private Registries

Private Agent Registries for Enterprise

Catalog, govern, and discover your internal AI agents — with the same A2A protocol-aware trust scoring that powers the public registry.

How It Works

Up and running in three steps

From sign-up to full agent discovery in minutes — no infrastructure to manage.

1

Create Your Registry

Sign up, get an API key, start registering agents in seconds.

2

Register Internal Agents

Add agents with metadata: team ownership, environment (prod/staging/dev), categories, and tags.

3

Scan & Score

Our trust engine scans your agents for A2A Agent Cards and assigns trust tiers automatically.

Features

Everything you need to govern your agents

Built for platform teams who need visibility and control across their AI agent fleet.

API-First

Full REST API with X-API-Key auth. Integrate into your CI/CD pipeline.

A2A Discovery

Automatic scanning of /.well-known/agent.json endpoints for all your private agents.

Trust Scoring

Same trust tier system (Verified, Basic, Unverified) applied to your internal agents.

Team Ownership

Tag agents by team, environment, and category for clear organizational visibility.

Environment Tracking

Separate production, staging, and development agents with environment labels.

Usage Analytics

Dashboard view of your private registry: agent counts by tier, environment, and status.

Pricing

Simple, transparent pricing

Start free. Scale when you're ready.

Free

$0 /mo
Up to 5 agents
  • API access
  • Trust scoring
  • Basic support
Get Started

Basic

$99 /mo
Up to 25 agents
  • Everything in Free
  • Priority scanning
  • Email support

Enterprise

$499 /mo
Unlimited agents
  • Everything in Pro
  • Dedicated support & SLA
  • SSO (coming soon)
API Preview

Developer-friendly from day one

Three API calls to go from zero to a fully discoverable private agent registry.

terminal
# Create your registry
curl -X POST https://api.agentry.com/api/orgs \
  -H "Content-Type: application/json" \
  -d '{"name": "Acme Corp", "email": "admin@acme.com"}'

# Register an agent
curl -X POST https://api.agentry.com/api/orgs/{org_id}/agents \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"name": "Support Bot", "url": "https://support.acme.com", "environment": "production", "owner_team": "engineering"}'

# Trigger A2A discovery scan
curl -X POST https://api.agentry.com/api/orgs/{org_id}/agents/{agent_id}/discover \
  -H "X-API-Key: your_api_key"