Config is the same across clients β only the file and path differ.
{
"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.
Firebase MCP enables AI assistants to work directly with Firebase services, including:
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:
Five weighted categories β click any category to see the underlying evidence.
No known CVEs.
Checked MCP_TRANSPORT against OSV.dev.
Click any tool to inspect its schema.
Be 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 data / cloud
Query and manage PostgreSQL databases directly from AI assistants
Manage Supabase projects β databases, auth, storage, and edge functions
Zero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
π₯ Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
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