agents
List Agentic agents
Get a paginated list of Agentic agents from the registry
get/v0/agents
Query parameters
cursorstring
Pagination cursor
Example:agent-cursor-123
Pagination cursor
limitinteger
Number of items per page
Example:50
Number of items per page
updated_sincestring
Filter agents updated since timestamp (RFC3339 datetime)
Example:2025-08-07T13:15:04.280Z
Filter agents updated since timestamp (RFC3339 datetime)
searchstring
Search agents by name (substring match)
Example:filesystem
Search agents by name (substring match)
versionstring
Filter by version ('latest' for latest version, or an exact version like '1.2.3')
Example:latest
Filter by version ('latest' for latest version, or an exact version like '1.2.3')
semantic_searchboolean
Use semantic search for the search term
Use semantic search for the search term
semantic_thresholdnumber double
Optional maximum cosine distance when semantic_search is enabled
Optional maximum cosine distance when semantic_search is enabled
Response
OK
Example response
{
"agents": [
{
"agent": {
"remotes": [
{
"headers": [
{
"name": "SOME_VARIABLE"
}
],
"type": "stdio",
"url": "https://api.example.com/mcp"
}
],
"repository": {
"id": "b94b5f7e-c7c6-d760-2c78-a5e9b8a5b8c9",
"source": "github",
"subfolder": "src/everything",
"url": "https://github.com/modelcontextprotocol/servers"
}
}
}
]
}