Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Securing Your MCP Server with Firebase Auth: A Production Walkthrough

DEV Community·Dale Nguyen·17 days ago
#x3cD6uQE
#oauth#firebase#mcp#fullscreen#token#server
Reading 0:00
15s threshold

Model Context Protocol (MCP) servers let AI assistants interact with real user data. That means auth isn't optional — it's the difference between a useful tool and a data breach. This post walks through exactly how Can Tax Pro secures its Python MCP server with Firebase Authentication, supporting both Firebase ID tokens (for direct access) and a custom OAuth 2.0 flow (for third-party clients like Claude.ai). Architecture Overview The system has three moving parts: Browser / Claude.ai Client │ │ Authorization: Bearer <token> ▼ MCP Server (Python/FastMCP on Cloud Run) │ │ Firebase Admin SDK ▼ Firestore (data isolated by userId) Enter fullscreen mode Exit fullscreen mode The MCP server accepts two token types : Firebase ID tokens — issued by Firebase Authentication, verified cryptographically Custom OAuth tokens ( ctpo_* ) — issued by the web app's OAuth server, stored as hashes in Firestore The web app itself acts as the OAuth authorization server for third-party integrations.…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More