Skip to content

Discover which authorization servers protect this resource

GET
/.well-known/oauth-protected-resource
curl --request GET \
--url https://api.adversarial.com/api/.well-known/oauth-protected-resource

Returns the RFC 9728 protected resource metadata document: the canonical resource URI, the authorization servers whose tokens are accepted here, the supported scopes, and how a bearer token should be presented.

Protected resource metadata

Media typeapplication/json
object
authorization_servers
required

Authorization servers that issue tokens accepted at this resource.

Array<string>
bearer_methods_supported
required
Array<string>
resource
required

Canonical URI of the resource (in our case, the MCP endpoint).

string
scopes_supported
required
Array<string>
Examplegenerated
{
"authorization_servers": [
"example"
],
"bearer_methods_supported": [
"example"
],
"resource": "example",
"scopes_supported": [
"example"
]
}