# Firestore Native > [!NOTE] > Currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0). This repository packages [MCP Toolbox](https://github.com/googleapis/mcp-toolbox)'s prebuilt `firestore` server as a plugin/extension to interact with [Firestore](https://cloud.google.com/firestore/docs) databases. It can be used with various AI agents, including [Antigravity](https://antigravity.google/), [Claude Code](https://claude.com/product/claude-code) and [Codex](https://developers.openai.com/codex), to manage your databases, collections, and documents using natural language prompts. > [!IMPORTANT] > **We Want Your Feedback!** > Please share your thoughts with us by filling out our feedback [form][form]. > Your input is invaluable and helps us improve the project for everyone. [form]: https://docs.google.com/forms/d/e/1FAIpQLSfEGmLR46iipyNTgwTmIDJqzkAwDPXxbocpXpUbHXydiN1RTw/viewform?usp=pp_url&entry.157487=firestore-native ## Table of Contents - [Why Use Firestore Native?](#why-use-firestore-native) - [Prerequisites](#prerequisites) - [Getting Started](#getting-started) - [Configuration](#configuration) - [Installation & Usage](#installation--usage) - [Antigravity](#antigravity) - [Claude Code](#claude-code) - [Codex](#codex) - [Installing via a compatible Agent Plugins client](#installing-via-a-compatible-agent-plugins-client) - [Usage Examples](#usage-examples) - [Available Tools](#available-tools) - [Generating Skills Instead](#generating-skills-instead) - [Additional Agent Skills](#additional-agent-skills) - [Troubleshooting](#troubleshooting) ## Why Use Firestore Native? - **Seamless Workflow:** Integrates seamlessly into your AI agent's environment. No need to constantly switch contexts for common database tasks. - **Natural Language Queries:** Stop wrestling with complex commands. Explore schemas and query data by describing what you want in plain English. - **Data Management:** Manage your Firestore data directly from your agent. - **Code Generation:** Accelerate development by asking your agent to generate data classes and other code snippets based on your document structures. ## 📺 Video Walkthrough Follow this step-by-step video walkthrough to setup and use the Firestore Native Extension.
## Prerequisites Before you begin, ensure you have the following: - One of these AI agents installed - Antigravity - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher - [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher. - [Claude Code](https://claude.com/product/claude-code) version **v2.1.94** or higher. - [Codex](https://developers.openai.com/codex) **v0.117.0** or higher. - [Node.js](https://nodejs.org/) — the MCP server runs via `npx`. - A Google Cloud project with the **Firestore API** enabled. - Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment. - IAM Permissions: * Cloud Datastore User (`roles/datastore.user`) * Firebase Rules Viewer (`roles/firebaserules.viewer`) ## Getting Started ### Configuration Please keep these env vars handy during the installation process: - `FIRESTORE_PROJECT`: The GCP project ID. - `FIRESTORE_DATABASE`: (Optional) The Firestore database ID. Defaults to `(default)`. > [!NOTE] > > - Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment. ### Installation & Usage To start interacting with your database, install the extension for your preferred AI agent, then launch the agent and use natural language to ask questions or perform tasks. For the latest version, check the [releases page][releases]. [releases]: https://github.com/gemini-cli-extensions/firestore-native/releases💡 Tip — Migrating from Gemini CLI?#### Antigravity 2.0 (IDE) **1. Install the plugin:** Install the plugin directly from the remote GitHub repository: ```bash agy plugin install https://github.com/gemini-cli-extensions/firestore-native ``` **2. Set env vars:** Set your environment vars as described in the [configuration section](#configuration). _(Tip: You can verify the MCP server is active by running the `/mcp` command in your active session.)_ #### Antigravity CLI You can install plugins directly from a remote GitHub repository. **1. Install the plugin:** ```bash agy plugin install https://github.com/gemini-cli-extensions/firestore-native ``` **2. Set env vars:** Set your environment vars as described in the [configuration section](#configuration).
If you previously installed this extension withgemini extensions install, you can convert it to an Antigravity plugin instead of reinstalling from scratch:See Migrating from Gemini CLI for details on plugins, context files (
- On first launch of Antigravity CLI, accept the Migration Options prompt to automatically convert your installed Gemini CLI extensions to Antigravity plugins.
- Or, from your terminal, run:
agy plugin import geminiGEMINI.md/AGENTS.md), and MCP server config differences.