clerk.create_oauth_application
ActiveTool of Vee3
Create a new OAuth application in a connected Clerk application (Clerk as IdP). **Sensitive** — client_secret may be present for confidential clients; do not log or expose it. Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account. Returns the new OAuth application summary. Cost = 10 tokens.
Parameters schema
{
"type": "object",
"title": "create_clerk_oauth_applicationArguments",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "Display name for the new OAuth application."
},
"public": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Public",
"default": null,
"description": "Whether this is a public OAuth client (no client secret; PKCE-capable)."
},
"scopes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Scopes",
"default": null,
"description": "Space-delimited scopes (e.g. profile email public_metadata)."
},
"redirect_uris": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"title": "Redirect Uris",
"default": null,
"description": "Allowed redirect URIs for the OAuth authorization flow."
},
"clerk_instance_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Clerk Instance Id",
"default": null,
"description": "Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account."
},
"consent_screen_enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Consent Screen Enabled",
"default": null,
"description": "Whether to show the OAuth consent screen during authorization."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries