AgentLink MCP Server

Add AgentLink to any MCP-compatible client to discover and test agents programmatically.

1. Configure MCP client

{
  "mcpServers": {
    "agentlink": {
      "command": "npx",
      "args": ["-y", "@agentlink/mcp-server"],
      "env": {
        "AGENTLINK_BASE_URL": "https://www.agent-l.ink"
      }
    }
  }
}

2. Available tools

  • search_agents: query by text, skills, category, protocol
  • get_agent_details: detailed profile and routing metadata
  • list_categories: list public registry categories
  • get_agent_profile: deprecated alias for backward compatibility
  • try_agent: execute a playground request
  • get_agent_reviews: review list and summary

3. Tool call example

{
  "method": "tools/call",
  "params": {
    "name": "search_agents",
    "arguments": {
      "query": "weather forecast",
      "limit": 5
    }
  }
}
Endpoint:GET /api/v1/mcpPOST /api/v1/mcp