Connect Neon to Gemini Enterprise
Search, read and write Neon from Gemini Enterprise. Arlet links the two through one MCP connection and takes care of keys and authentication.
Arlet makes Neon's official MCP server available from the AI client you already use. Signing in completes the connection, and you can choose read-only access at authorization.
The AI can manage projects and branches, run SQL and migrations, tune queries and read logs. Neon recommends MCP for development and testing, so for production projects choose read-only access or keep tool-call confirmation enabled in your AI client. The available tools are those provided by Neon's official server.
How to connect Neon to Gemini Enterprise
- 1
In the Arlet dashboard, open Integrations β Add an integration and choose Neon. Sign in with Link Neon, name the connection and click Create.
- 2
Sign in to Gemini Enterprise with your organization Google account and open the gear icon at the bottom left β Connectors β Add MCP Server.
- 3
In the MCP info tab, enter https://mcp.arlet.dev/mcp/ as the Server URL and "Arlet" as the Name. In the Auth tab, enter the OAuth settings from the Arlet docs (Authorization URL / Token URL / Client ID / Client Secret / Scopes) and click Add.
- 4
In the connector list on the chat screen, click Connect on Arlet, sign in with Google and authorize. Arlet can then be enabled with the toggle.
Adding custom connectors (MCP) requires a Gemini Enterprise subscription and is not available in the consumer Gemini app. See the docs for the values to enter in the Auth tab.
What you can do
Neon tools that Gemini Enterprise can call.
list_projectsList projects.
describe_projectGet a project's branches, databases and computes.
create_projectCreate a project.
list_branchesList branches.
create_branchCreate a branch.
get_database_tablesList tables.
describe_table_schemaGet a table's schema.
run_sqlRun SQL.
run_sql_transactionRun several statements in one transaction.
explain_sql_statementGet a query plan.
prepare_database_migrationTry a migration on a branch.
complete_database_migrationApply a tried migration to the main branch.
list_slow_queriesList slow queries.
prepare_query_tuningValidate a query-tuning candidate.
get_connection_stringGet a connection string.
query_logsSearch logs.
The tool list follows what Neon's official MCP server provides and may change.
Example uses
Change the schema safely
Try a migration on a branch, check the result and then apply it to main.
Fix slow queries
Find slow queries, read their plans and validate improvements such as new indexes.
Aggregate data
Inspect the schema, write the aggregation SQL and explain the result.
See the environment
List projects, branches and running computes.
Prompts you can use as-is
- Try a migration adding a status column to orders on a branch, and apply it if it looks fine
- Show the five slowest recent queries and validate an improvement for each
- Count weekly sign-ups in the users table
- List the branches and running computes for each project
