F

Firebase

Manage Firebase auth, RTDB and Firestore.

·No reviews yet
Repo
Share:

About

Auto-generated

Firebase is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Firebase.

What core functionality does the Firebase MCP provide?
The Firebase MCP enables management of Firebase authentication, Realtime Database, and Firestore. It centralizes control over these key Firebase services.
How can I install the Firebase MCP in a client application?
Installation typically involves adding the Firebase MCP to your client application's configuration, often via a plugin manager or package installer specific to that client. Consult your client's documentation for exact steps.
Does the Firebase MCP require an API key or other authentication?
Yes, the Firebase MCP requires an API key for authentication. You will need to obtain and configure a valid API key from your Firebase project to use this MCP.
What are some common use cases for the Firebase MCP?
Common use cases include managing user authentication flows, synchronizing data with Realtime Database, and performing CRUD operations on Firestore collections. It's often used for backend-as-a-service integrations.
What are the licensing costs for using the Firebase MCP?
The MCP itself is open source under the community provider model, as indicated by its repository. However, the underlying Firebase services (Auth, RTDB, Firestore) have their own pricing tiers, which can incur costs based on usage.
What is a prerequisite for using this Firebase MCP?
A prerequisite for using this Firebase MCP is an existing Firebase project configured with the services you intend to manage. You must also have appropriate permissions and an API key for that project.

Install Firebase

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "firebase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-firebase"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "firebase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-firebase"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "firebase": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-firebase"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.