fastmcp.server.auth.providers.google
Google OAuth provider for FastMCP.
This module provides a complete Google OAuth integration that’s ready to use
with just a client ID and client secret. It handles all the complexity of
Google’s OAuth flow, token validation, and user management.
Example:
Classes
GoogleProviderSettings
Settings for Google OAuth provider.
GoogleTokenVerifier
Token verifier for Google OAuth tokens.
Google OAuth tokens are opaque (not JWTs), so we verify them
by calling Google’s tokeninfo API to check if they’re valid and get user info.
Methods:
verify_token
GoogleProvider
Complete Google OAuth provider for FastMCP.
This provider makes it trivial to add Google OAuth protection to any
FastMCP server. Just provide your Google OAuth app credentials and
a base URL, and you’re ready to go.
Features:
- Transparent OAuth proxy to Google
- Automatic token validation via Google’s tokeninfo API
- User information extraction from Google APIs
- Minimal configuration required