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-card.json endpoints for all your private agents. Also checks the legacy /.well-known/agent.json path.

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.

Early adopter pricing — these rates are locked for teams that sign up before Q3 2026.

BETA

Starter

$0 /mo
Up to 5 agents
  • API access
  • Basic trust scoring
  • Single environment
  • Community support
Start Free

Team

$299 /mo
Up to 25 agents
  • Everything in Starter
  • Full trust scoring + observability
  • 3 environments (dev, staging, prod)
  • Team ownership + RBAC
  • Email support

Enterprise

Custom
Unlimited agents
  • Everything in Platform
  • SLA + dedicated support
  • SSO / SAML integration
  • Audit log retention
  • Private relay instance
  • Custom onboarding + training
Contact Sales
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"