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
}
}Lists all MCP servers for the current tenant with pagination.
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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of items per page
1 <= x <= 100010
Number of items to skip
x >= 00
Filter by MCP Server ID
Filter by MCP Server name
Filter by MCP Server FQN
Was this page helpful?