AI Agent Registry

cloud2000·2026년 4월 14일

AI Agent 중앙 Registry


개요: 레이어별 역할

AI Agent 에코시스템 레이어
──────────────────────────────────────────────────
Layer 1 (발견·등록)    → AgentRegistry / MCP Registry / Cloud Marketplace
Layer 2 (에이전트 통신) → A2A Protocol (Agent ↔ Agent)
Layer 3 (도구 통합)    → MCP + ToolRegistry (Agent ↔ Tool)
Layer 4 (거버넌스)     → 정책 모듈, AgentCard, 증거 기록
레지스트리성숙도표준화 수준주요 사용 사례
MCP Registry높음 (v0.1 stable)Anthropic 공식 표준MCP 서버 발견·설치
AgentRegistry중간 (급성장)클라우드별 분산에이전트 카탈로그·거버넌스
ToolRegistry낮음프레임워크별 파편화프레임워크 내 도구 관리

1. MCP Registry

MCP

Model Context Protocol Registry — Anthropic 주도, GitHub·Microsoft·PulseMCP 참여.
MCP 서버의 "앱 스토어". 코드가 아닌 메타데이터만 보관. 2025년 9월 8일 Preview 출시, v0.1 API freeze.

핵심 특징

항목내용
네임스페이스역 DNS 형식 (io.github.user/server-name)
인증 방식GitHub / DNS / HTTP 챌린지로 소유권 검증
서버 설정 파일server.json — 패키지 위치·실행 명령·환경변수·기능 목록
Sub-registry조직이 자체 private 레지스트리 구축 가능 (동일 OpenAPI 스펙)

등록된 주요 Registry

RegistryURL서버 수특징
공식 MCP Registryregistry.modelcontextprotocol.ioAnthropic 운영, 권위 있는 원본
MCP.SOmcp.so19,900+호출량 기반 리더보드
Smithery AIsmithery.ai4,000+CLI 제공, 로컬·호스팅 실행
PulseMCPpulsemcp.com/servers일일 업데이트, 사용량 지표
Cursor Directorycursor.directory/pluginsCursor IDE 전용

서버 발견(Discovery) 방법

  • .well-known/mcp.json — 서버가 도구·프로토콜·인증 정보를 자동 광고
  • REST API (GET /v0/servers) — 프로그래밍적 서버 검색
  • IDE 통합 — VS Code, Cursor, Claude Desktop 원클릭 설치
  • Smithery CLIsmithery mcp search [term]

GitHub: modelcontextprotocol/registry


2. AgentRegistry

AgentRegistry

에이전트 아티팩트(MCP 서버·AI 에이전트·스킬)를 빌드·패키징·퍼블리시·발견·거버넌스하는 플랫폼. "AI용 npm"을 지향.

주요 구현체 비교

구현체주체특징
AgentRegistry (aregistry.ai)오픈소스CLI + Web UI, 벡터 기반 시맨틱 검색
Solo.io AgentRegistrySolo.io기업용, 거버넌스·접근 제어·정책 내장
AgentHub연구버전 증거 기록, append-only 라이프사이클 로그
Google Cloud AI Agent MarketplaceGoogleGemini Enterprise 검증, A2A 통합
Azure API CenterMicrosoft1st/3rd party 에이전트, API Management 연동

Enterprise 등록 흐름

에이전트 → Registry API 호출
              ↓
         AgentCard 저장 (메타데이터 DB)
              ↓
    Policy/Governance 모듈 → 접근 제어 적용
              ↓
         클라이언트 검색 시 AgentCard 반환

AgentCard = 에이전트의 capabilities·연결 정보·지원 프로토콜을 담은 명세 (A2A 표준)

GitHub: agentregistry-dev/agentregistry


3. ToolRegistry

LangChain
AutoGen

AI 에이전트가 사용할 도구(함수·API·스크립트)를 등록·검색·실행하는 시스템. 프레임워크별로 구현 방식이 상이하며 아직 파편화 상태.

프레임워크별 구현 현황

프레임워크ToolRegistry 방식
LangChainwrap_tool_call 훅, LangSmith Tool Registry, langgraph-bigtool
AutoGenBaseAgent.register() + AgentType 문자열 식별자 + 팩토리 함수
CrewAIskills.sh 레지스트리, LangChain Tools 통합, MCP Discovery 추진 중
OpenAI Agents SDK내장 MCP 서버 도구 통합 (Swarm의 production 후계)

ToolRegistry가 해결하는 문제

  • 단편화 해소 — 프레임워크마다 다른 도구 등록 방식 표준화
  • 동적 발견 — 실행 중 필요한 도구 자동 검색 (glue code 불필요)
  • 보안 경계 — 도구별 권한·실행 범위 제어

4. 표준화 동향: A2A & IETF

Agent Registry 상호운용성을 위한 표준 프로토콜들이 경쟁 중.

표준주관핵심 메커니즘
A2A (Agent2Agent)Google → Linux FoundationJSON-RPC 2.0, AgentCard 기반 발견, SSE 스트리밍
ARDPIETF Draft분산·연합 환경, MCP·A2A·gRPC 다중 프로토콜
AIDIETF DraftDNS TXT 레코드 (_agent.<domain>) 경량 발견
W3C AI Agent ProtocolW3C-CGDID(분산 식별자) 기반 에이전트 인증·권한

A2A = 에이전트 ↔ 에이전트 통신 (오케스트레이션)
MCP = 에이전트 ↔ 도구 통신 (도구 통합)
두 프로토콜은 상호 보완적으로 작동


참고 자료

#출처URL
1공식 MCP Registryhttps://registry.modelcontextprotocol.io
2MCP Registry GitHubhttps://github.com/modelcontextprotocol/registry
3MCP Registry 출시 블로그https://blog.modelcontextprotocol.io/posts/2025-09-08-mcp-registry-preview
4AgentRegistry (aregistry.ai)https://aregistry.ai
5AgentRegistry GitHubhttps://github.com/agentregistry-dev/agentregistry
6TrueFoundry — AI Agent Registry 가이드https://www.truefoundry.com/blog/ai-agent-registry
7Tool Registry 공식https://www.toolregistry.ai
8A2A Protocol 명세https://a2a-protocol.org/latest/specification
9A2A GitHubhttps://github.com/a2aproject/A2A
10Google Cloud AI Agent Marketplacehttps://cloud.google.com/blog/topics/partners/google-cloud-ai-agent-marketplace
11Azure API Center (Agent Registry)https://learn.microsoft.com/azure/api-center/agent-to-agent-overview
12IETF ARDP Drafthttps://datatracker.ietf.org/doc/draft-pioli-agent-discovery
13IETF AID Drafthttps://datatracker.ietf.org/doc/draft-nemethi-aid-agent-identity-discovery
14W3C AI Agent Protocolhttps://w3c-cg.github.io/ai-agent-protocol/protocol.html
15Smithery AIhttps://smithery.ai

본 보고서는 2025년 공개 자료를 기반으로 작성되었습니다. IETF·W3C 표준은 초안(Draft) 단계이며 변경될 수 있습니다.

profile
클라우드쟁이

0개의 댓글