Note
Currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0).
This repository packages MCP Toolbox's prebuilt firestore server as a plugin/extension to interact with Firestore databases. It can be used with various AI agents, including Antigravity, Claude Code and 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. Your input is invaluable and helps us improve the project for everyone.
- Why Use Firestore Native?
- Prerequisites
- Getting Started
- Installing via a compatible Agent Plugins client
- Usage Examples
- Available Tools
- Generating Skills Instead
- Additional Agent Skills
- Troubleshooting
- 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.
Follow this step-by-step video walkthrough to setup and use the Firestore Native Extension.
Before you begin, ensure you have the following:
- One of these AI agents installed
- Antigravity
- Antigravity CLI version v1.6.0 or higher
- Antigravity 2.0 version v2.0.0 or higher.
- Claude Code version v2.1.94 or higher.
- Codex v0.117.0 or higher.
- Antigravity
- Node.js — the MCP server runs via
npx. - A Google Cloud project with the Firestore API enabled.
- Ensure Application Default Credentials are available in your environment.
- IAM Permissions:
- Cloud Datastore User (
roles/datastore.user) - Firebase Rules Viewer (
roles/firebaserules.viewer)
- Cloud Datastore User (
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 are available in your environment.
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.
Antigravity
You can use either of these two agents for Antigravity:
- Antigravity CLI version v1.6.0 or higher
- Antigravity 2.0 version v2.0.0 or higher.
💡 Tip — Migrating from Gemini CLI?
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.
1. Install the plugin:
Install the plugin directly from the remote GitHub repository:
agy plugin install https://github.com/gemini-cli-extensions/firestore-native2. Set env vars: Set your environment vars as described in the configuration section.
(Tip: You can verify the MCP server is active by running the /mcp command in your active session.)
You can install plugins directly from a remote GitHub repository.
1. Install the plugin:
agy plugin install https://github.com/gemini-cli-extensions/firestore-native2. Set env vars: Set your environment vars as described in the configuration section.
Claude Code
1. Set env vars: In your terminal, set your environment vars as described in the configuration section.
2. Start the agent:
claude3. Install the plugin:
/plugin install firestore-native@claude-plugins-official_(Tip: Run /plugin list inside Claude Code to verify the plugin is active, or /reload-plugins if you just installed it.)
Codex
1. Install marketplace:
codex plugin marketplace add GoogleCloudPlatform/data-agent-kit2. Install the plugin:
codex plugin add firestore-native@data-agent-kit3. Set env vars: Enter your environment vars as described in the configuration section.
4. (Optional) Update the marketplace:
codex plugin marketplace upgrade data-agent-kitThis repository is a valid Agent Plugins (v1) plugin. Any Agent Plugins–compatible client can install it directly using its own built-in plugin command — no extra tooling required — by pointing at this repository:
https://github.com/gemini-cli-extensions/firestore-native
Beyond harnesses covered by the native install above, compatible clients include VS Code, Cursor, GitHub Copilot, and Kiro. See your agent's documentation for its exact install command.
Set env vars: Set your environment vars as described in the configuration section.
Interact with Firestore using natural language:
- Document and Data Retrieval:
- "Show me the Firestore data for the test users qa_user_123 and qa_user_456 from the users-staging collection."
- "Find all users in the users-staging collection whose wishlist contains product-glasses."
- Document Updates and Cleanup:
- "For all 20 test users you just found, please remove product-glasses(inactive) from their wishlist."
- "Update the document with ID order-987 in the orders collection to set the status to 'Shipped'."
The tools come from MCP Toolbox's prebuilt firestore server, grouped into toolsets:
- data - Handles NoSQL document operations and collection hierarchy exploration. Use for CRUD tasks and data retrieval. Provides flexible document manipulation and structured querying.
For the full, up-to-date list, see the firestore prebuilt config
in the MCP Toolbox repository.
The tool-backed skills this plugin used to ship were generated from the same prebuilt toolsets. If your agent lacks deferred tool loading, or you prefer skills, regenerate them with the script in this repository:
VERSION=<toolbox version> ./.github/scripts/generate_skills.shUse the toolbox version pinned in mcp.json. A single toolset, without
the script:
npx @toolbox-sdk/server@<toolbox version> --prebuilt firestore skills-generate \
--name "<skill name>" \
--toolset "<toolset>" \
--description "<what it is for>"The generated scripts call the toolbox through npx, so no binary download is needed.
See Generate Agent Skills
in the MCP Toolbox repository.
Find additional skills to support your entire software development lifecycle at github.com/gemini-cli-extensions.
Use the debug mode of your agent (e.g., gemini --debug) to enable debugging.
Common issues:
- "failed to find default credentials: google: could not find default credentials.": Ensure Application Default Credentials are available in your environment. See Set up Application Default Credentials for more information.
- "✖ Error during discovery for server: MCP error -32000: Connection closed": The database connection has not been established. Ensure your configuration is set via environment variables.
- "✖ MCP ERROR: Error: spawn npx ENOENT": Node.js is not installed, or
npxis not on yourPATH. Install Node.js, which providesnpx. - "cannot execute binary file": The Toolbox binary did not download correctly. Ensure the correct binary for your OS/Architecture has been downloaded. See Installing the server for more information.
