Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Get a valid OAuth access token for a connected provider for the current user (no project required). Automatically refreshes expired tokens when possible.
| Field | Value |
|---|
| Name | get_user_oauth_token |
| Group | OAuth |
Playground
{
"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_token tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"provider": {
"type": "string",
"description": "OAuth provider name"
},
"access_token": {
"type": "string",
"description": "Valid access token"
}
},
"required": [
"provider",
"access_token"
],
"additionalProperties": false,
"description": "Structured result returned by the get_user_oauth_token tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}