Skip to main content
GET
/
api
/
mcp
/
oauth
/
{id}
Get OAuth config status
curl --request GET \
  --url http://localhost:8080/api/mcp/oauth/{id}
{
  "id": "<string>",
  "status": "pending",
  "created_at": "2023-11-07T05:31:56Z",
  "expires_at": "2023-11-07T05:31:56Z",
  "token_id": "<string>",
  "token_expires_at": "2023-11-07T05:31:56Z",
  "token_scopes": [
    "<string>"
  ]
}

Path Parameters

id
string
required

OAuth config ID

Response

OAuth config status retrieved successfully

Status of an OAuth configuration

id
string

OAuth config ID

status
enum<string>

Current status of the OAuth flow:

  • pending: User has not yet authorized
  • authorized: User authorized and token is stored
  • failed: Authorization failed
Available options:
pending,
authorized,
failed
created_at
string<date-time>

When this OAuth config was created

expires_at
string<date-time>

When this OAuth config expires (becomes invalid if not completed)

token_id
string

ID of the associated OAuth token (only present if status is authorized)

token_expires_at
string<date-time>

When the OAuth access token expires (only present if status is authorized)

token_scopes
string[]

Scopes granted in the OAuth token (only present if status is authorized)