An MCP Auth server with DSR for firebase logging in
{
"mcpServers": {
"mcp-firebase-auth-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP Auth server with DSR for firebase logging in
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 72 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Manage Supabase projects — databases, auth, storage, and edge functions
Query and manage PostgreSQL databases directly from AI assistants
An official Qdrant Model Context Protocol (MCP) server implementation
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Mcp Firebase Auth Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A ready-to-deploy OAuth2 authentication server that integrates Firebase Authentication with the Model Context Protocol (MCP). This proxy server handles OAuth2 flows and provides secure authentication for MCP servers and clients.
This is a complete OAuth2 authentication server that:
graph TD
A[MCP Client<br/>VS Code, Claude Desktop] --> B[Your MCP Server<br/>:8080]
B --> C[MCP Auth Server Proxy<br/>:9000 - This Project]
C --> D[Firebase Authentication<br/>Google's Service]
style C fill:#f9f,stroke:#333,stroke-width:3px
style C color:#000
.well-known discovery endpointsgit clone https://github.com/muthuishere/mcp-firebase-auth-server.git
cd mcp-firebase-auth-server
# Copy and edit environment file
cp .env.example .env
# Edit .env with your Firebase credentials
# Option 1: Docker (Recommended)
docker-compose up -d
# Option 2: Local development
./gradlew bootRun
# Check OAuth2 discovery
curl http://localhost:9000/.well-known/oauth-authorization-server
# Visit the auth server
open http://localhost:9000
🎉 That's it! Your OAuth2 auth server is running on port 9000.
| Variable | Description | Example |
|----------|-------------|---------|
| AUTH_SERVER_PORT | Port for the auth server | 9000 |
| MCP_AUTH_SERVER_URL | Public URL of this server | http://localhost:9000 |
| FIREBASE_PROJECT_ID | Your Firebase project ID | my-project-123 |
| FIREBASE_API_KEY | Firebase web API key | AIzaSy... |
| FIREBASE_SERVICE_ACCOUNT_KEY | Firebase service account JSON | {"type":"service_account",...} |
GET /.well-known/oauth-authorization-server - OAuth2 server metadataGET /.well-known/openid-configuration - OpenID Connect discoveryGET /oauth2/authorize - Authorization endpointPOST /oauth2/token - Token exchange endpointPOST /oauth2/refresh - Token refresh endpointPOST /oauth2/register - Dynamic client registrationPOST /oauth2/consent - User consent handling