๐ฅ Model Context Protocol (MCP) server for Firebase.
{
"mcpServers": {
"firebase-mcp": {
"args": [
"-y",
"MCP_TRANSPORT"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
๐ฅ Model Context Protocol (MCP) server for Firebase.
Is it safe?
No known CVEs for MCP_TRANSPORT.
No authentication โ any process on your machine can connect.
MIT. View license โ
Is it maintained?
Last commit 163 days ago. 244 stars.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
12 tools. ~700 tokens (0.3% of 200K).
Run this in your terminal to verify the server starts. Then let us know if it worked โ your result helps other developers.
npx -y 'MCP_TRANSPORT' 2>&1 | head -1 && echo "โ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
firestore_add_documentAdd a document to a collection
firestore_list_documentsList documents with filtering
firestore_get_documentGet a specific document
firestore_update_documentUpdate an existing document
firestore_delete_documentDelete a document
firestore_list_collectionsList root collections
firestore_query_collection_groupQuery across subcollections
storage_list_filesList files in a directory
storage_get_file_infoGet file metadata and URL
storage_uploadUpload file from content
This server is missing a description.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
An official Qdrant Model Context Protocol (MCP) server implementation
Query and manage PostgreSQL databases directly from AI assistants
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Firebase Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.

Firebase MCP enables AI assistants to work directly with Firebase services, including:
The server works with MCP client applicatios such as Claude Desktop, Augment Code, VS Code, and Cursor.
โ ๏ธ Known Issue: The
firestore_list_collectionstool may return a Zod validation error in the client logs. This is an erroneous validation error in the MCP SDK, as our investigation confirmed no boolean values are present in the response. Despite the error message, the query still works correctly and returns the proper collection data. This is a log-level error that doesn't affect functionality.
Add the server configuration to your MCP settings file:
~/Library/Application Support/Claude/claude_desktop_config.json~/Library/Application Support/Code/User/settings.json[project root]/.cursor/mcp.jsonMCP Servers can be installed manually or at runtime via npx (recommended). How you install determines your configuration:
{
"firebase-mcp": {
"command": "npx",
"args": [
"-y",
"@gannonh/firebase-mcp"
],
"env": {
"SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/serviceAccountKey.json",
"FIREBASE_STORAGE_BUCKET": "your-project-id.firebasestorage.app"
}
}
}
{
"firebase-mcp": {
"command": "node",
"args": [
"/absolute/path/to/firebase-mcp/dist/index.js"
],
"env": {
"SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/serviceAccountKey.json",
"FIREBASE_STORAGE_BUCKET": "your-project-id.firebasestorage.app"
}
}
}
Ask your AI client: "Please test all Firebase MCP tools."
SERVICE_ACCOUNT_KEY_PATH: Path to your Firebase service account key JSON (required)FIREBASE_STORAGE_BUCKET: Bucket name for Firebase Storage (defaults to [projectId].appspot.com)MCP_TRANSPORT: Transport type to use (stdio or http) (defaults to stdio)MCP_HTTP_PORT: Port for HTTP transport (defaults to 3000)MCP_HTTP_HOST: Host for HTTP transport (defaults to localhost)MCP_HTTP_PATH: Path for HTTP transport (defaults to /mcp)DEBUG_LOG_FILE: Enable file logging:
true to log to ~/.firebase-mcp/debug.logEdit: ~/Library/Application Support/Claude/claude_desktop_config.json
Edit: ~/Library/Application Support/Code/User/settings.json
Edit: [project root]/.cursor/mcp.json
| Tool | Description | Requi