You're viewing a demo portfolio

Join the waitlist
PRSM

clerk.get_user_oauth_access_token

Active

Tool of Vee3

declared in 1.27.1

Retrieve OAuth access tokens previously issued for a Clerk user and provider. **Sensitive** — returned token values are secrets that grant access to the user's linked provider account; never log or expose token values. Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account. Returns oauth_access_tokens. Cost = 10 tokens.

Parameters schema

{
  "type": "object",
  "title": "get_clerk_user_oauth_access_tokenArguments",
  "required": [
    "user_id",
    "provider"
  ],
  "properties": {
    "limit": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Limit",
      "default": 10,
      "description": "Maximum tokens to return when paginated."
    },
    "offset": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Offset",
      "default": 0,
      "description": "Number of tokens to skip when paginated."
    },
    "user_id": {
      "type": "string",
      "title": "User Id",
      "description": "Clerk user id (user_...) to operate on."
    },
    "provider": {
      "type": "string",
      "title": "Provider",
      "description": "OAuth provider id (for example oauth_google)."
    },
    "paginated": {
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "null"
        }
      ],
      "title": "Paginated",
      "default": null,
      "description": "Whether to paginate results."
    },
    "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."
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

Vee3

https://github.com/Vee3io/Vee3

1/7 registries
View full server →
clerk.get_user_oauth_access_token — Vee3 — PRSM MCP