Spring Security · Capability
Spring Security - Identity and Access Management
Workflow capability for Spring Security OAuth2 and OpenID Connect operations. Provides unified identity verification, token management, and access control operations. Used by platform admins, security engineers, and application developers working with Spring Security-backed APIs.
What You Can Do
POST
Issue access token
— Issue an OAuth2 access token using the specified grant type
/v1/tokens
POST
Validate token
— Validate an OAuth2 token and retrieve its metadata
/v1/tokens/introspect
POST
Revoke token
— Revoke an active access or refresh token
/v1/tokens/revoke
GET
Get signing keys
— Retrieve JWKS for JWT signature verification
/v1/jwks
GET
Get user identity
— Get OIDC claims for the authenticated user
/v1/userinfo
GET
Get provider config
— Retrieve OpenID Connect provider configuration
/v1/discovery
MCP Tools
issue-access-token
Issue an OAuth2 access token using authorization_code, client_credentials, or refresh_token grant
validate-token
Validate an OAuth2 access or refresh token and retrieve its claims and status
read-only
revoke-token
Revoke an OAuth2 token to prevent further use
idempotent
get-signing-keys
Retrieve the JSON Web Key Set for verifying JWT-format tokens
read-only
get-user-claims
Retrieve OpenID Connect identity claims for the currently authenticated user
read-only
discover-oidc-provider
Retrieve OpenID Connect provider metadata for automated client configuration
read-only
APIs Used
spring-security-oauth2