Firebase MCP Server
Overview
Firebase MCP Server is a server that provides a unified interface to interact with various Firebase services including Authentication, Firestore, and Storage.
To use Firebase MCP Server, clone the repository, install the dependencies, and configure the service account key in the mcp_settings.json file.
- Unified API for Firebase services - Support for Authentication, Firestore, and Storage - Easy setup and configuration
- Managing user authentication in applications.
- Performing CRUD operations on Firestore documents.
- Handling file storage and retrieval in Firebase Storage.
Add to your AI client
Use these steps to connect Firebase MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-firebase-gemini-dk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-firebase-gemini-dk"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-firebase-gemini-dk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-firebase-gemini-dk"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-firebase-gemini-dk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-firebase-gemini-dk"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-firebase-gemini-dk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-firebase-gemini-dk"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-firebase-gemini-dk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-firebase-gemini-dk"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-firebase-gemini-dk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-firebase-gemini-dk"
]
}
}
}FAQ
What services does Firebase MCP Server support?
It supports Authentication, Firestore, and Storage services.
Is there a license for using Firebase MCP Server?
Yes, it is licensed under the MIT License.
How do I set up Firebase MCP Server?
Follow the setup instructions in the documentation to clone the project and configure the service account.