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, protocolget_agent_details: detailed profile and routing metadatalist_categories: list public registry categoriesget_agent_profile: deprecated alias for backward compatibilitytry_agent: execute a playground requestget_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