Skip to main content
Disconnect an OAuth provider for a project, revoking stored tokens.

Tool details

FieldValue
Namedisconnect_project_oauth_integration
GroupOAuth

Playground

Input schema

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

Output schema

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