API ReferenceManagementMCP Server Clients
POST
/v1/mgmt/mcp/server/client/create

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

name?string
mcpServerId?string
approvedCallbackUrls?array<string>
string
scopes?array<string>
string
tags?array<string>
string
logo?string
forceAddAllAuthorizationInfo?boolean

Create an MCP Server Client, using a valid management key.

curl -X POST "https://api.descope.com/v1/mgmt/mcp/server/client/create" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": "string",  "cleartext": "string",  "clientId": "string"}
export interface Response {id?: stringcleartext?: stringclientId?: string}
Was this helpful?