curl --request GET \
--url https://api.blaxel.ai/v0/mcp/hub \
--header 'Authorization: Bearer <token>'
[
{
"createdAt": "<string>",
"updatedAt": "<string>",
"categories": [
"<any>"
],
"coming_soon": true,
"description": "<string>",
"displayName": "<string>",
"enterprise": true,
"entrypoint": {},
"form": {},
"hiddenSecrets": [
"<string>"
],
"icon": "<string>",
"image": "<string>",
"integration": "<string>",
"longDescription": "<string>",
"name": "<string>",
"url": "<string>"
}
]
curl --request GET \
--url https://api.blaxel.ai/v0/mcp/hub \
--header 'Authorization: Bearer <token>'
[
{
"createdAt": "<string>",
"updatedAt": "<string>",
"categories": [
"<any>"
],
"coming_soon": true,
"description": "<string>",
"displayName": "<string>",
"enterprise": true,
"entrypoint": {},
"form": {},
"hiddenSecrets": [
"<string>"
],
"icon": "<string>",
"image": "<string>",
"integration": "<string>",
"longDescription": "<string>",
"name": "<string>",
"url": "<string>"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful operation
The response is of type object[]
.
Was this page helpful?