Skip to main content

fastmcp.server.auth.providers.aws

AWS Cognito OAuth provider for FastMCP. This module provides a complete AWS Cognito OAuth integration that’s ready to use with a user pool ID, domain prefix, client ID and client secret. It handles all the complexity of AWS Cognito’s OAuth flow, token validation, and user management. Example:

Classes

AWSCognitoTokenVerifier

Token verifier for Cognito access tokens. Cognito access tokens use a client_id claim instead of the standard aud claim. This subclass passes audience=None to the parent (skipping the aud check) and validates the client_id claim directly. Methods:

verify_token

Verify token and filter claims to Cognito-specific subset.

AWSCognitoProvider

Complete AWS Cognito OAuth provider for FastMCP. This provider makes it trivial to add AWS Cognito OAuth protection to any FastMCP server using OIDC Discovery. Just provide your Cognito User Pool details, client credentials, and a base URL, and you’re ready to go. Features:
  • Automatic OIDC Discovery from AWS Cognito User Pool
  • Automatic JWT token validation via Cognito’s public keys
  • Cognito-specific claim filtering (sub, username, cognito:groups)
  • Support for Cognito User Pools
Methods:

get_token_verifier

Creates a Cognito-specific token verifier with claim filtering. Args:
  • algorithm: Optional token verifier algorithm
  • audience: Optional token verifier audience
  • required_scopes: Optional token verifier required_scopes
  • timeout_seconds: HTTP request timeout in seconds