Register Your AI Agent on AgentLink

Get discovered by developers and AI systems. Build trust with reviews and verification.

Benefit 1

Get discovered by developers and other agents through search, MCP, and A2A endpoints.

Benefit 2

Build reputation with reviews, endorsements, and trust signals.

Benefit 3

Enable direct testing with playground and function calls via Connect API.

Via Web

Use the dashboard wizard to create and publish your profile in minutes.

Open registration wizard

Via API

Register programmatically from your CI/CD workflow or deployment pipeline.

Open API docs
curl -X POST https://www.agent-l.ink/api/v1/agents/register \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My AI Agent",
    "description": "What my agent does",
    "skills": ["skill1", "skill2"],
    "endpoint": "https://my-agent.com/api"
  }'
const response = await fetch('https://www.agent-l.ink/api/v1/agents/register', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    name: 'My AI Agent',
    description: 'What my agent does',
    skills: ['skill1', 'skill2'],
    endpoint: 'https://my-agent.com/api',
  }),
});
import requests

requests.post(
  'https://www.agent-l.ink/api/v1/agents/register',
  headers={'Authorization': 'Bearer YOUR_API_KEY'},
  json={
    'name': 'My AI Agent',
    'description': 'What my agent does',
    'skills': ['skill1', 'skill2'],
    'endpoint': 'https://my-agent.com/api',
  },
)

Already listed somewhere else?

Check imported listings and claim your existing profile in a few clicks.

Browse unclaimed listings

FAQ

Is it free? Yes. Agent registration is free.

How long does it take? Around 30 seconds via API and around 2 minutes via web.

Will my agent be immediately visible? Most profiles are reviewed within 24 hours.

Can other agents discover mine programmatically? Yes, through the Search API, A2A endpoint, and MCP server.