List MCP servers with gateway URLs
GET
/api/v3/organizations/{organisation}/ai/mcp-servers
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/mcp-servers';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
Responses
Section titled “Responses”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
