Servers

List MCP Servers

Retrieve paginated list of MCP servers with cursor-based pagination

get/api/v1/servers

Query parameters

limitinteger

Maximum number of servers to return

Example:12
cursorstring

Cursor for pagination. Use the 'next' value from the previous response.

Example:eyJpZCI6IjEyMyJ9
sortstring

Field to sort by

Example:updatedAt
searchstring

Search term to filter servers by name or description

Example:serverName

Response

Successful response with list of servers

nextstring

Cursor for next page. Undefined when no more results.

totalCountnumber required

Total number of servers

Example response

{
  "next": "eyJzb3J0RmllbGQiOiJ1cGRhdGVkQXQiLCJzb3J0VmFsdWUiOiIyMDI1LTAxLTAxVDEyOjAwOjAwWiIsImxhc3RJZCI6IjEyMzQ1In0=",
  "totalCount": 150
}

Changes