examples/auth/mounted/README.md
This example demonstrates mounting multiple OAuth-protected MCP servers in a single application, each with its own OAuth provider. It showcases RFC 8414 path-aware discovery where each server has its own authorization server metadata endpoint.
http://127.0.0.1:8000/api/mcp/github/mcphttp://127.0.0.1:8000/api/mcp/google/mcpDiscovery endpoints (RFC 8414 path-aware):
http://127.0.0.1:8000/.well-known/oauth-authorization-server/api/mcp/githubhttp://127.0.0.1:8000/.well-known/oauth-authorization-server/api/mcp/googleSet environment variables for both providers:
export FASTMCP_SERVER_AUTH_GITHUB_CLIENT_ID="your-github-client-id"
export FASTMCP_SERVER_AUTH_GITHUB_CLIENT_SECRET="your-github-client-secret"
export FASTMCP_SERVER_AUTH_GOOGLE_CLIENT_ID="your-google-client-id"
export FASTMCP_SERVER_AUTH_GOOGLE_CLIENT_SECRET="your-google-client-secret"
Configure redirect URIs in each provider's developer console (note the /api/mcp/{provider} prefix since the servers are mounted):
http://127.0.0.1:8000/api/mcp/github/auth/callback/githubhttp://127.0.0.1:8000/api/mcp/google/auth/callback/googleStart the server:
python server.py
Connect with the client:
python client.py