An MCP Auth server with DSR for firebase logging in
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-firebase-auth-server": {
"command": "<see-readme>",
"args": []
}
}
}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
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
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