MCP OAuth
Register a public MCP OAuth client.
Dynamic Client Registration for public clients. Redirect URIs must be safe loopback URIs or explicitly allowlisted HTTPS origins.
post/mcp/oauth/register
Request body
Example request
{
"client_name": "Codex",
"redirect_uris": [
"http://localhost:1455/callback"
],
"scope": "workspace:read leads:read agent:read"
}Response
Registered public client metadata.
Example response
{
"client_id": "mcp_abc123",
"client_name": "Codex",
"scope": "workspace:read leads:read analytics:read agent:read"
}