npm @dasasian/firebase-mcp-serverstdioMITupdated 23d ago
General-purpose Model Context Protocol (MCP) server for Firebase (Firestore, Storage, Auth, Functions Logging) with schema-driven validation and context-efficient tools.
What can you do with firebase mcp server?
Firebase MCP Server
General-purpose Model Context Protocol (MCP) server for Firebase (Firestore, Storage, Auth, Functions Logging) with schema-driven validation and context-efficient tools.
Features
- @ Mention Support - Reference Firestore documents with
@firebase:firestore://users/user-123 - Smart Autocomplete - MRU cache tracks accessed documents for quick re-reference
- Auto-Discovery - Shows both schema-based AND discovered collections
- Path-based schemas - Follows Firebase
firestore.rulesconvention - Schema evolution - Field status metadata (experimental → official → legacy)
- Hot reload - File watching, no restart needed when schemas change
- Flexible validation - Three modes: strict, warn (default), permissive
- Works without schemas - Discovery mode for exploring unknown databases
- Context-efficient tools - 99% token reduction for large datasets
- Index-aware queries - Validates queries against
firestore.indexes.json - Functions logging - SQL-like queries for Cloud Functions logs with aggregations and label filtering
Install
Add it to your MCP client (e.g. Claude Code) — runs via npx, no global install needed:
{
"mcpServers": {
"firebase": {
"command": "npx",
"args": ["-y", "@dasasian/firebase-mcp-server", "start", "./firestore-schemas.json"]
}
}
}
start takes an optional schema config path (default ./firestore-schemas.json) and an optional indexes path (default ./firestore.indexes.json) — see Schema Format. Firebase auth uses Application Default Credentials.
Or install the CLI globally:
npm install -g @dasasian/firebase-mcp-server
firebase-mcp start ./firestore-schemas.json
Development (from source)
npm install
npm run build
npm run cli -- start --config ./examples/basic/firestore-schemas.json
@ Mention Support (Resources)
Reference Firestore documents directly in Claude Code:
What's the email for @firebase:firestore://users/user-123?
Show me all posts: @firebase:firestore://posts/*
How It Works
When you type @firebase in Claude Code:
Shows schema-based collections (with validation):
- 📋 Users (User account documents)
- 📋 Posts (Blog post documents)
- 📋 Comments (Comments on posts)
Plus auto-discovered collections (no schema):
- 🔍 analytics
- 🔍 sessions
- 🔍 audit_logs
Configuration
# Enable/disable auto-discovery (default: true)
export FIRESTORE_AUTO_DISCOVER=true
# Cache duration in seconds (default: 300 = 5 minutes)
export FIRESTORE_DISCOVERY_CACHE_TTL=300
Auto-discovery cost: ~$0.0003/day (negligible)
Tools
The server ships 33 tools in four groups. Every tool declares MCP annotations
(readOnlyHint, destructiveHint, idempotentHint, openWorldHint) so a client
can auto-approve reads and ask before writes.
Choosing which tools to load
All 33 tool definitions cost roughly 12k tokens of context on every session. If you only need part of the surface, narrow it:
# Only Firestore (12 tools, ~4.3k tokens)
firebase-mcp start --tools firestore
# Firestore plus Auth
firebase-mcp start --tools firestore,auth
Or set it in your MCP client config:
export FIREBASE_MCP_TOOLS=firestore,storage
The --tools flag wins over the environment variable. Leaving both unset loads
everything, so upgrading never hides a tool you were already using. Calling a
tool from a group you switched off returns an error naming the group to add.
| Group | Tools | ~Tokens |
|---|---|---|
firestore |
12 | 4,341 |
storage |
14 | 4,152 |
auth |
6 | 2,075 |
logs |
1 | 1,817 |
| all (default) | 33 | 12,387 |
Firestore (12) — --tools firestore
firestore_show_collections— Show collections (read)firestore_read— Read document (read)firestore_export— Export collection (read)firestore_validate— Validate against schema (read)firestore_query_select— Query documents (read)firestore_query_collection_group— Query collection group (read)firestore_count— Count documents (read)firestore_sum— Sum a field (read)firestore_stats— Collection statistics (read)firestore_import— Import document (write, destructive)firestore_update— Update documents (write, destructive)firestore_delete— Delete documents (write, destructive)
Firebase Auth (6) — --tools auth
firebase_auth_list_users— List users (read)firebase_auth_get_user— Get user (read)firebase_auth_create_user— Create user (write)firebase_auth_update_user— Update user (write, destructive)firebase_auth_delete_user— Delete user (write, destructive)firebase_auth_revoke_sessions— Revoke sessions (write, destructive)
Firebase Storage (14) — --tools storage
firebase_storage_list_buckets— List buckets (read)firebase_storage_ls— List files (read)firebase_storage_stat— File metadata (read)firebase_storage_find— Find files (read)firebase_storage_get_url— Get file URL (read)firebase_storage_get_access— Get file access (read)firebase_storage_read— Download file to a local temp path (write)firebase_storage_upload— Upload file (write, destructive)firebase_storage_rm— Delete file (write, destructive)firebase_storage_cp— Copy file (write, destructive)firebase_storage_mv— Move file (write, destructive)firebase_storage_sync— Sync bucket to local (write, destructive)firebase_storage_push— Push local to bucket (write, destructive)firebase_storage_set_access— Set file access (write, destructive)
Cloud Logging (1) — --tools logs
firebase_functions_logs— Query Cloud Functions logs with SQL-like syntax (write)
firebase_storage_read and firebase_functions_logs are not marked read-only
because they write: the first downloads to a local temp file, the second updates
its auto-discovered logging schema on disk.
Reading function logs needs an extra IAM role. The Firebase Admin SDK service account has no Cloud Logging access by default, so
firebase_functions_logsfails withPERMISSION_DENIED: Permission denied for all log viewseven when every other tool works. Grant the role and allow a few minutes for it to take effect:gcloud projects add-iam-policy-binding PROJECT_ID \ --member="serviceAccount:firebase-adminsdk-xxxxx@PROJECT_ID.iam.gserviceaccount.com" \ --role="roles/logging.viewAccessor"
roles/logging.vieweralone may not be enough — the error names log views, and thelogging.views.accesspermission is inviewAccessor.
Example queries:
// Discover what functions exist
{"distinct": "functionName"}
// Show recent errors
{"where": [{"field": "severity", "operator": "==", "value": "ERROR"}], "limit": 20}
// Top error patterns with counts (use "message" — structured logs have no textPayload)
{"groupBy": ["message"], "aggregates": [{"field": "*", "operation": "count", "alias": "count"}], "where": [{"field": "severity", "operator": "==", "value": "ERROR"}], "orderBy": [{"field": "count", "direction": "desc"}], "limit": 10}
// Filter by custom labels (e.g., user, environment)
{"where": [{"field": "labels.user_id", "operator": "==", "value": "123"}]}
Schema Format
Schemas follow Firebase's path-based convention:
{
"schemas": {
"/organizations/{organizationId}": {
"description": "Organization documents",
"schema": {
"type": "object",
"required": ["id", "name"],
"properties": {
"id": { "type": "string" },
"name": { "type": "string" }
}
}
},
"/organizations/{organizationId}/products/{productId}": {
"description": "Product catalog",
"schema": {
"type": "object",
"properties": {
"name": { "type": "string" },
"category": {
"type": "string",
"x-status": "legacy",
"x-replacedBy": "productType"
},
"productType": {
"type": "string",
"x-status": "experimental"
}
}
},
"timestampFields": ["createdAt", "updatedAt"]
}
}
}
Documentation
- Installation Guide
- @ Mention Support Guide - How to use
@firebase:firestore://references - Configuration Reference
- Schema Creation Guide
- Functions Logging Guide - Query Cloud Functions logs with SQL-like syntax, aggregations, and custom labels
License
MIT
Install
Add firebase mcp server to your client. Pick the one you use.
claude mcp add firebase-mcp-server -- npx -y @dasasian/firebase-mcp-servercodex mcp add firebase-mcp-server -- npx -y @dasasian/firebase-mcp-serveramp mcp add firebase-mcp-server -- npx -y @dasasian/firebase-mcp-server{
"mcpServers": {
"firebase-mcp-server": {
"command": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"firebase-mcp-server": {
"command": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"firebase-mcp-server","command":"npx","args":["-y","@dasasian/firebase-mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"firebase-mcp-server": {
"command": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"firebase-mcp-server": {
"command": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"firebase-mcp-server": {
"command": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"firebase-mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"firebase-mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@dasasian/firebase-mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @dasasian/firebase-mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 15 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.0Latest | Aug 16, 2026 |
| 1.0.0 | Aug 16, 2026 |