Skip to main content
GET
/
api
/
svc
/
v1
/
mcp-servers
List MCP servers
curl --request GET \
  --url https://{controlPlaneURL}/api/svc/v1/mcp-servers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "<string>",
      "fqn": "<string>",
      "manifest": {},
      "createdBySubject": {
        "subjectId": "<string>",
        "subjectType": "user",
        "subjectSlug": "<string>",
        "subjectDisplayName": "<string>"
      },
      "accountId": "<string>",
      "id": "<string>",
      "tools": [
        {}
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "proxyUrl": "<string>",
      "oauth2AuthStatus": "<string>"
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:100

Number of items per page

Required range: 1 <= x <= 1000
Example:

10

offset
integer
default:0

Number of items to skip

Required range: x >= 0
Example:

0

id
string

Filter by MCP Server ID

name
string

Filter by MCP Server name

fqn
string

Filter by MCP Server FQN

Response

200 - application/json

Returns list of MCP servers

data
MCPServer · object[]
required

Array of MCP Servers

pagination
Pagination · object
required

Pagination Information