Agent Registry gives platform teams and developers one place to manage the agentic infrastructure their applications depend on.
Use the web UI and arctl CLI to publish approved MCP servers, agents, and skills, discover what is available, and make those artifacts usable across local development, shared environments, and Kubernetes.
- π¦ One trusted source for AI building blocks β a curated catalog instead of scattered repos, scripts, and one-off MCP setup.
- π Faster developer onboarding β discover approved artifacts quickly with less manual configuration.
- π Consistent path from laptop to cluster β same discovery and delivery workflow across local dev and Kubernetes.
- π Governance without slowing teams down β centralize curation and publishing without forcing each team to rebuild the process.
- π₯ Install
arctl - π Quickstart guides:
- π¬ See it in action
- π Development details
- π€ Contributing
- π¬ Discord
Curate a shared catalog of MCP servers, agents, and skills your teams can trust and reuse.
- Publish artifacts from a central registry
- Discover approved artifacts with the CLI and web UI
- Give teams a consistent source of truth across environments
Turn a broad set of available AI artifacts into a collection your organization is willing to support.
- Organize what developers can discover and deploy
- Standardize how artifacts are shared across teams
- Keep control of what gets published and promoted
Move from discovery to usage without reinventing the same delivery path for every team.
- Run workflows locally with
arctl - Deploy Agent Registry into Kubernetes with Helm
- Support local environments and shared platform environments from the same registry
Make approved artifacts easier to consume from the tools developers already use.
- Generate configuration for Claude Desktop, Cursor, and VS Code
- Pair with Agent Gateway for a consistent access layer to deployed MCP infrastructure
- Reduce manual setup for AI clients and shared environments
- Platform teams curate and publish approved MCP servers, agents, and skills in Agent Registry.
- Developers discover those artifacts through the web UI or
arctl. - Teams pull and deploy what they need in local environments or Kubernetes.
- AI clients and shared gateway infrastructure connect to approved artifacts through a consistent workflow.
Get started with a local registry in minutes. The first time arctl runs, it automatically starts the local registry daemon and imports the built-in seed data.
# Install via script
curl -fsSL https://raw.githubusercontent.com/agentregistry-dev/agentregistry/main/scripts/get-arctl | bash
# Discover available MCP servers
arctl mcp list
# Configure supported AI clients
arctl configure claude-desktop
arctl configure cursor
arctl configure vscode
arctl configure claude-codeOpen http://localhost:12121 to use the web UI.
Run Agent Registry in a cluster when you want shared discovery and deployment workflows. An external PostgreSQL instance with the pgvector extension is required.
Deploy a single-instance PostgreSQL and pgvector into your cluster using the provided example manifest:
kubectl apply -f https://raw.githubusercontent.com/agentregistry-dev/agentregistry/main/examples/postgres-pgvector.yaml
kubectl -n agentregistry wait --for=condition=ready pod -l app=postgres-pgvector --timeout=120sThis setup is intended for development and testing. For production, use a managed PostgreSQL service or a production-grade operator.
helm install agentregistry oci://ghcr.io/agentregistry-dev/agentregistry/charts/agentregistry \
--namespace agentregistry \
--create-namespace \
--set database.host=postgres-pgvector.agentregistry.svc.cluster.local \
--set database.password=agentregistry \
--set database.sslMode=disable \
--set config.jwtPrivateKey=$(openssl rand -hex 32)Then port-forward to access the UI:
kubectl port-forward -n agentregistry svc/agentregistry 12121:12121Get started: Helm chart details, Local Kind cluster
Learn how to create an Anthropic Skill, publish it to Agent Registry, and use it in Claude Code.
We welcome contributions and feedback from the community!
- π Report issues
- π‘ Start a discussion
- π§ Contributing guide
- π Development details
- π¬ Join our Discord
Apache V2 License. See LICENSE for details.

