list_servers
List MCP servers in an organization as compact rows.
Lists the MCP servers in an organization as compact rows: id, slug, name, status, tags. Offset-paginated. Read-only.
This is the source of truth for serverId. For full details use get_server; for deployment history use list_deployments with serverId.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
organizationId | string | Yes | The organization whose servers to list. From list_organizations. |
limit | number | No | Max servers to return (1–100, upstream default 50). |
skip | number | No | Number of servers to skip (default 0). |
sort | enum | No | createdAt:asc/desc, updatedAt:asc/desc, or name:asc/desc. |
Returns
{
"items": [{ "id": "...", "slug": "my-server", "name": "My Server", "status": "..." }],
"total": 12,
"limit": 50,
"skip": 0,
"hasMore": false
}When hasMore is true, the response includes nextSkip for the next page.