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

ParameterTypeRequiredDescription
organizationIdstringYesThe organization whose servers to list. From list_organizations.
limitnumberNoMax servers to return (1–100, upstream default 50).
skipnumberNoNumber of servers to skip (default 0).
sortenumNocreatedAt: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.

On this page