F

Firestore

Read and write Google Firestore collections.

·No reviews yet
Repo
Share:

About

Auto-generated

Firestore 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 Firestore.

What is the purpose of the Firestore MCP?
The Firestore MCP allows you to read from and write to Google Firestore collections. It facilitates interaction with your NoSQL data stored in Firestore.
How do I configure the Firestore MCP in an MCP client?
Configuration typically involves providing an API key within your client's settings for the Firestore MCP. The exact steps depend on your client's interface and the specific deployment.
Does the Firestore MCP require authentication?
Yes, the Firestore MCP uses an API key for authentication. You will need to provide a valid API key to access your Firestore data.
What are the primary capabilities of the Firestore MCP?
The Firestore MCP primarily enables reading and writing operations on Google Firestore collections. It provides direct interaction with your database for data manipulation.
What is the cost associated with using the Firestore MCP?
The cost of using the Firestore MCP depends on the underlying Google Firestore service. Refer to Google Cloud's pricing documentation for Firestore usage costs.
Are there any prerequisites for using the Firestore MCP?
A key prerequisite for using the Firestore MCP is an existing Google Firestore project and an associated API key. You must have appropriate permissions configured in Google Cloud.

Install Firestore

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

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

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

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.