Skip to main content
GET
/
v1
/
mcp
/
oauth-authorization-servers
OAuth Authorization Server Metadata
curl --request GET \
  --url https://api.example.com/v1/mcp/oauth-authorization-servers
{
  "issuer": "https://mytelescope.mcp.solvapay.com",
  "authorization_endpoint": "https://mytelescope.mcp.solvapay.com/v1/customer/auth/authorize",
  "token_endpoint": "https://mytelescope.mcp.solvapay.com/v1/customer/auth/token",
  "registration_endpoint": "https://mytelescope.mcp.solvapay.com/v1/customer/auth/register",
  "token_endpoint_auth_methods_supported": [
    "client_secret_basic",
    "client_secret_post"
  ],
  "response_types_supported": [
    "code"
  ],
  "scopes_supported": [
    "openid",
    "profile",
    "email"
  ],
  "code_challenge_methods_supported": [
    "S256"
  ]
}

Response

200 - application/json

OAuth authorization server metadata

issuer
string
Example:

"https://mytelescope.mcp.solvapay.com"

authorization_endpoint
string
Example:

"https://mytelescope.mcp.solvapay.com/v1/customer/auth/authorize"

token_endpoint
string
Example:

"https://mytelescope.mcp.solvapay.com/v1/customer/auth/token"

registration_endpoint
string
Example:

"https://mytelescope.mcp.solvapay.com/v1/customer/auth/register"

token_endpoint_auth_methods_supported
string[]
Example:
["client_secret_basic", "client_secret_post"]
response_types_supported
string[]
Example:
["code"]
scopes_supported
string[]
Example:
["openid", "profile", "email"]
code_challenge_methods_supported
string[]
Example:
["S256"]