Skip to main content
GET
List a gateway's MCP servers
Returns the gateway’s MCP servers, paginated. Each is served on the data plane at /v1/mcp/{slug} — see MCP gateway for what the gateway does to a tools/call on the way through. A server’s stored upstream credential is never returned; auth comes back with its mode and nothing sensitive. Requires the read capability on ai_gateway. See the control-plane overview for authentication, the {data, meta} envelope, pagination and error types.

Authorizations

Authorization
string
header
required

OAuth 2.1 authentication — recommended for new integrations. Access tokens (kc_ prefix) are minted at the root-host token endpoint https://api.knoxcall.com/oauth/token and passed as Authorization: Bearer <access_token>. Public clients must use PKCE with the authorization_code grant; confidential clients may use client_credentials. The first-party SDKs and the knoxcall login CLI handle token minting, caching, refresh, and DPoP for you.

Path Parameters

gatewayId
string<uuid>
required

The parent AI gateway UUID.

Query Parameters

page
integer
default:1

Page number for pagination. Clamped server-side so the derived offset never exceeds 100,000 rows -- the effective maximum is floor(100000 / per_page) + 1, i.e. 1,001 at per_page=100. A larger value returns that last page, and meta.page reports it.

Required range: x >= 1
per_page
integer
default:20

Number of items per page (max 100).

Required range: 1 <= x <= 100

Response

A paginated list of MCP servers.

data
object[]
meta
object

Pagination metadata for list endpoints.