Skip to main content
GET
/
api
/
public
/
organizations
/
{orgId}
/
mcp-servers
List MCP servers
curl --request GET \
  --url https://charts.basedash.com/api/public/organizations/{orgId}/mcp-servers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "displayName": "<string>",
      "serverUrl": "<string>",
      "serverLabel": "<string>",
      "lastSyncAttemptAt": "2023-11-07T05:31:56Z",
      "lastSuccessfulSyncAt": "2023-11-07T05:31:56Z",
      "hasCompletedFirstSync": true,
      "syncErrorMessage": "<string>",
      "tools": [
        {
          "id": "<string>",
          "name": "<string>",
          "description": "<string>",
          "readOnlyHint": true,
          "foundInServer": true
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format: Bearer <basedash_api_key>

Path Parameters

orgId
string
required

Organization ID

Query Parameters

limit
integer
default:50

Maximum number of items to return (1-100, default 50)

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination (ID of the last item from previous page)

Response

MCP servers retrieved successfully

data
object[]
required
pagination
object
required