Skip to main content
Check whether a specific OAuth provider is connected for the current user (no project required).

Tool details

FieldValue
Nameget_user_oauth_status
GroupOAuth

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "provider": {
      "type": "string",
      "description": "OAuth provider name (e.g., \"github\", \"slack\", \"google\")"
    }
  },
  "required": [
    "provider"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_user_oauth_status tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "provider": {
      "type": "string",
      "description": "OAuth provider name"
    },
    "connected": {
      "type": "boolean",
      "description": "Whether the provider is connected"
    }
  },
  "required": [
    "provider",
    "connected"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the get_user_oauth_status tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}