Personal Access Tokens
List scopes available for a new personal access token
Returns the org's configured MCP_SCOPES as a flat array of scope definitions, for populating the create-token scope picker. Unlike GET /oauth-clients/scopes, this is not grouped by category and not role-aware — every org member sees the same set, since PAT scope selection isn't gated by admin status.
get/personal-access-tokens/scopes
Response
Scopes available to grant
Example response
{
"scopes": [
{
"name": "openid",
"description": "OpenID Connect authentication",
"category": "Identity"
}
]
}