Skip to content

List MCP servers with gateway URLs

GET
/api/v3/organizations/{organisation}/ai/mcp-servers
curl --request GET \
--url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/mcp-servers \
--header 'Authorization: Bearer <token>'

Lists the organization’s registered MCP servers for CLI sync (QuantCode). Each server’s url is the FULL MCP gateway URL on the AI API host — clients connect there, never to the origin server. Credentials are never exposed.

organisation
required
string

The organisation ID

List of MCP servers retrieved successfully

Media typeapplication/json
object
gatewayBaseUrl

Origin of the MCP gateway host (scheme://host[:port]) — clients treat gateway URLs on this origin as bearer-authenticated with the end user’s Quant token

string
servers
Array<object>
object
serverName
string
displayName
string
url

MCP gateway URL

string
enabled
boolean
toolAllowlist
Array<string>
Examplegenerated
{
"gatewayBaseUrl": "example",
"servers": [
{
"serverName": "example",
"displayName": "example",
"url": "example",
"enabled": true,
"toolAllowlist": [
"example"
]
}
]
}

Access denied

Failed to fetch MCP servers