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"
]
}Returns OAuth 2.0 Authorization Server Metadata for MCP client discovery (RFC8414)
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"
]
}OAuth authorization server metadata
"https://mytelescope.mcp.solvapay.com"
"https://mytelescope.mcp.solvapay.com/v1/customer/auth/authorize"
"https://mytelescope.mcp.solvapay.com/v1/customer/auth/token"
"https://mytelescope.mcp.solvapay.com/v1/customer/auth/register"
["client_secret_basic", "client_secret_post"]["code"]["openid", "profile", "email"]["S256"]