{
  "markdown": "# AlloyDB for PostgreSQL\n\n> [!NOTE]\n> Currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0).\n\nThis repository packages [MCP Toolbox](https://github.com/googleapis/mcp-toolbox)'s prebuilt `alloydb-postgres` server as a plugin/extension to interact with [AlloyDB for PostgreSQL](https://cloud.google.com/alloydb) instances. 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, execute queries, explore schemas, and troubleshoot issues using natural language prompts.\n\n> [!IMPORTANT]\n> **We Want Your Feedback!**\n> Please share your thoughts with us by filling out our feedback [form][form].\n> Your input is invaluable and helps us improve the project for everyone.\n\n[form]: https://docs.google.com/forms/d/e/1FAIpQLSfEGmLR46iipyNTgwTmIDJqzkAwDPXxbocpXpUbHXydiN1RTw/viewform?usp=pp_url&entry.157487=alloydb\n\n## Table of Contents\n\n- [Why Use AlloyDB for PostgreSQL?](#why-use-alloydb-for-postgresql)\n- [Prerequisites](#prerequisites)\n- [Getting Started](#getting-started)\n  - [Configuration](#configuration)\n  - [Installation & Usage](#installation--usage)\n    - [Antigravity](#antigravity)\n    - [Claude Code](#claude-code)\n    - [Codex](#codex)\n- [Installing via a compatible Agent Plugins client](#installing-via-a-compatible-agent-plugins-client)\n- [Usage Examples](#usage-examples)\n- [Available Tools](#available-tools)\n- [Generating Skills Instead](#generating-skills-instead)\n- [Additional Agent Skills](#additional-agent-skills)\n- [Troubleshooting](#troubleshooting)\n\n## Why Use AlloyDB for PostgreSQL?\n\n- **Seamless Workflow:** Integrates seamlessly into your AI agent's environment. No need to constantly switch contexts for common database tasks.\n- **Natural Language Queries:** Stop wrestling with complex commands. Explore schemas and query data by describing what you want in plain English.\n- **Full Lifecycle Control:** Manage the entire lifecycle of your database, from creating instances to exploring schemas and running queries.\n- **Code Generation:** Accelerate development by asking your agent to generate data classes and other code snippets based on your table schemas.\n\n## Prerequisites\n\nBefore you begin, ensure you have the following:\n\n- One of these AI agents installed\n  - Antigravity\n     - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher\n     - [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher.\n  - [Claude Code](https://claude.com/product/claude-code) version **v2.1.94** or higher.\n  - [Codex](https://developers.openai.com/codex) **v0.117.0** or higher.\n- [Node.js](https://nodejs.org/) — the MCP server runs via `npx`.\n- A Google Cloud project with the **AlloyDB API** enabled.\n- Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.\n- IAM Permissions:\n  - AlloyDB Client (`roles/alloydb.client`)\n  - AlloyDB Admin (`roles/alloydb.admin`)\n\n## Getting Started\n\n### Configuration\n\nPlease keep these env vars handy during the installation process:\n\n- `ALLOYDB_POSTGRES_PROJECT`: The GCP project ID.\n- `ALLOYDB_POSTGRES_REGION`: The region of your AlloyDB instance.\n- `ALLOYDB_POSTGRES_CLUSTER`: The ID of your AlloyDB cluster.\n- `ALLOYDB_POSTGRES_INSTANCE`: The ID of your AlloyDB instance.\n- `ALLOYDB_POSTGRES_DATABASE`: The name of the database to connect to.\n- `ALLOYDB_POSTGRES_USER`: (Optional) The database username.\n- `ALLOYDB_POSTGRES_PASSWORD`: (Optional) The password for the database user.\n- `ALLOYDB_POSTGRES_IP_TYPE`: (Optional) Type of the IP address: `PUBLIC`, `PRIVATE`, or `PSC`. Defaults to `PUBLIC`.\n\n> [!NOTE]\n>\n> - Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.\n> - If your AlloyDB instance uses private IPs, you must run your agent in the same Virtual Private Cloud (VPC) network.\n\n### Installation & Usage\n\nTo 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.\n\nFor the latest version, check the [releases page][releases].\n\n[releases]: https://github.com/gemini-cli-extensions/alloydb/releases\n\n<!-- {x-release-please-start-version} -->\n\n<details open>\n<summary id=\"antigravity\">Antigravity</summary>\n\nYou can use either of these two agents for Antigravity:\n- [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher\n- [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher.\n\n<blockquote>\n💡 <strong>Tip — Migrating from Gemini CLI?</strong><br>\nIf you previously installed this extension with <code>gemini extensions install</code>, you can convert it to an Antigravity plugin instead of reinstalling from scratch:\n<ul>\n  <li><strong>On first launch of Antigravity CLI</strong>, accept the Migration Options prompt to automatically convert your installed Gemini CLI extensions to Antigravity plugins.</li>\n  <li><strong>Or, from your terminal</strong>, run:\n    <pre><code class=\"language-bash\">agy plugin import gemini</code></pre>\n  </li>\n</ul>\nSee <a href=\"https://antigravity.google/docs/gcli-migration\">Migrating from Gemini CLI</a> for details on plugins, context files (<code>GEMINI.md</code> / <code>AGENTS.md</code>), and MCP server config differences.\n</blockquote>\n\n#### Antigravity 2.0 (IDE)\n\n**1. Install the plugin:**\n\nInstall the plugin directly from the remote GitHub repository:\n\n```bash\nagy plugin install https://github.com/gemini-cli-extensions/alloydb\n```\n\n**2. Set env vars:**\nSet your environment vars as described in the [configuration section](#configuration).\n\n_(Tip: You can verify the MCP server is active by running the `/mcp` command in your active session.)_\n\n#### Antigravity CLI\n\nYou can install plugins directly from a remote GitHub repository.\n\n**1. Install the plugin:**\n\n```bash\nagy plugin install https://github.com/gemini-cli-extensions/alloydb\n```\n\n**2. Set env vars:**\nSet your environment vars as described in the [configuration section](#configuration).\n\n</details>\n\n<details>\n<summary id=\"claude-code\">Claude Code</summary>\n\n**1. Set env vars:**\nIn your terminal, set your environment vars as described in the [configuration section](#configuration).\n\n**2. Start the agent:**\n\n```bash\nclaude\n```\n\n**3. Install the plugin:**\n\n```bash\n/plugin install alloydb@claude-plugins-official\n```\n\n_(Tip: Run `/plugin list` inside Claude Code to verify the plugin is active, or `/reload-plugins` if you just installed it.)\n</details>\n\n<details>\n<summary id=\"codex\">Codex</summary>\n\n**1. Install marketplace:**\n\n```bash\ncodex plugin marketplace add GoogleCloudPlatform/data-agent-kit\n```\n\n**2. Install the plugin:**\n\n```bash\ncodex plugin add alloydb@data-agent-kit\n```\n\n**3. Set env vars:**\nEnter your environment vars as described in the [configuration section](#configuration).\n\n**4. (Optional) Update the marketplace:**\n```sh\ncodex plugin marketplace upgrade data-agent-kit\n```\n\n</details>\n\n## Installing via a compatible Agent Plugins client\n## Installing via a compatible Agent Plugins client\n\nThis repository is a valid [Agent Plugins](https://github.com/agentplugins/agent-plugins-spec) (v1) plugin. Any [Agent Plugins–compatible client](https://agent-plugins.org/compatible-clients) can install it directly using its own built-in plugin command — no extra tooling required — by pointing at this repository:\n\n```\nhttps://github.com/gemini-cli-extensions/alloydb\n```\n\nBeyond 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.\n\n**Set env vars:**\nSet your environment vars as described in the [configuration section](#configuration).\n\n<!-- {x-release-please-end} -->\n\n\n## Usage Examples\n\nInteract with AlloyDB using natural language right from your agent:\n\n- **Provision Infrastructure:**\n    - \"Create a new AlloyDB cluster named 'e-commerce-prod' in project 'my-gcp-project'.\"\n    - \"Add a read-only instance to my 'e-commerce-prod' cluster.\"\n- **Explore Schemas and Data:**\n    - \"Show me all tables in the 'orders' database.\"\n    - \"What are the columns in the 'products' table?\"\n    - \"How many orders were placed in the last 30 days?\"\n- **Generate Code:**\n    - \"Generate a Python dataclass to represent the 'customers' table.\"\n\n## Available Tools\n\nThe tools come from MCP Toolbox's prebuilt `alloydb-postgres` server, grouped into toolsets:\n\n- **admin** - Use these tools when you need to provision new AlloyDB clusters and instances, monitor their creation status, and retrieve high-level configuration or health data for the environment.\n- **access-management** - Use these tools when you need to manage database users, inspect permissions and roles, and verify global configuration parameters related to security and access control.\n- **data** - Use these tools when you need to explore the database schema, identify objects like views and triggers, and execute custom SQL queries to interact with your data.\n- **monitor** - Use these tools when you need to troubleshoot slow performance, analyze query execution plans, identify resource-heavy processes, and monitor system-level PromQL metrics.\n- **health** - Use these tools when you need to optimize storage, identify index issues, analyze table statistics, or manage autovacuum and tablespace configurations to maintain peak database health.\n- **optimize** - Use these tools when you need to discover and manage PostgreSQL extensions or fine-tune engine-level settings such as memory allocation and server configuration parameters.\n- **replication** - Use these tools when you need to monitor replication health, manage sync states between nodes, and ensure the high availability and data distribution of your AlloyDB cluster.\n\nFor the full, up-to-date list, see the [`alloydb-postgres` prebuilt config](https://github.com/googleapis/mcp-toolbox/blob/main/internal/prebuiltconfigs/tools/alloydb-postgres.yaml)\nin the MCP Toolbox repository.\n\n## Generating Skills Instead\n\nThe tool-backed skills this plugin used to ship were generated from the same prebuilt\ntoolsets. If your agent lacks deferred tool loading, or you prefer skills, regenerate\nthem with the script in this repository:\n\n```bash\nVERSION=<toolbox version> ./.github/scripts/generate_skills.sh\n```\n\nUse the toolbox version pinned in [`mcp.json`](./mcp.json). A single toolset, without\nthe script:\n\n```bash\nnpx @toolbox-sdk/server@<toolbox version> --prebuilt alloydb-postgres skills-generate \\\n  --name \"<skill name>\" \\\n  --toolset \"<toolset>\" \\\n  --description \"<what it is for>\"\n```\n\nThe generated scripts call the toolbox through `npx`, so no binary download is needed.\nSee [Generate Agent Skills](https://github.com/googleapis/mcp-toolbox#generate-agent-skills)\nin the MCP Toolbox repository.\n\n## Additional Agent Skills\n\nFind additional skills to support your entire software development lifecycle at [github.com/gemini-cli-extensions](https://github.com/gemini-cli-extensions), including:\n* [Generic PostgreSQL extension](https://github.com/gemini-cli-extensions/postgres)\n* [AlloyDB Observability extension](https://github.com/gemini-cli-extensions/alloydb-observability)\n\n## Troubleshooting\n\nUse the debug mode of your agent (e.g., `gemini --debug`) to enable debugging.\n\nCommon issues:\n\n- \"failed to find default credentials: google: could not find default credentials.\": Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment. See [Set up Application Default Credentials](https://cloud.google.com/docs/authentication/external/set-up-adc) for more information.\n- \"✖ 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.\n- \"✖ MCP ERROR: Error: spawn npx ENOENT\": Node.js is not installed, or `npx` is not on your `PATH`. Install Node.js, which provides `npx`.\n- \"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](https://mcp-toolbox.dev/documentation/introduction/#install-toolbox) for more information.\n",
  "bytes": 12539,
  "sha": "45b0761bfedcceeda9c5ba64b234983b2b08e89be28a845178ff974dc306dd53",
  "repo_slug": "gemini-cli-extensions/alloydb",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_gemini_cli_extensions_alloydb_7ad9c657/readme"
}