Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Check whether a specific OAuth provider is connected for the current user (no project required).
get_user_oauth_status
{ "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#" }
{ "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#" }