Skip to main content
GET
/
api
/
svc
/
v1
/
mcp
List MCP servers
curl --request GET \
  --url https://{controlPlaneURL}/api/svc/v1/mcp \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "fqn": "my-tenant:mcp-server:filesystem-tools",
      "tenantName": "<string>",
      "manifest": {
        "name": "<string>",
        "description": "<string>",
        "url": "<string>",
        "collaborators": [
          {
            "subject": "<string>",
            "role_id": "<string>"
          }
        ],
        "tls_settings": {
          "reject_unauthorized": true,
          "ca_cert": "<string>"
        },
        "tool_settings": [
          {
            "name": "<string>",
            "description": "<string>",
            "disabled": true
          }
        ],
        "auth_data": {
          "headers": {},
          "auth_level": "global"
        },
        "ownedBy": {
          "account": "<string>"
        },
        "tags": {}
      },
      "createdBySubject": {
        "subjectId": "<string>",
        "subjectSlug": "<string>",
        "subjectDisplayName": "<string>",
        "subjectPatName": "<string>",
        "subjectControllerName": "<string>",
        "subjectExternalIdentitySlug": "<string>"
      },
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "proxyUrl": "<string>",
      "isAuthOverrideSupported": true
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.truefoundry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer | null
default:100

Number of items per page

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

10

offset
integer | null
default:0

Number of items to skip

Required range: x >= 0
Example:

0

filter
string | null

JSON string: structured filter tree (AND/OR groups, column leaves on name, json_map leaves on manifest keys such as type).

Response

200 - application/json

Paginated list of MCP servers in the caller's tenant.

data
MCPServerV2 · object[]
required

Array of MCP Servers

pagination
Pagination · object
required

Pagination Information