> ## Documentation Index
> Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Neon

> Manage Neon Postgres projects, branches, and execute database queries

## At a glance

* **Availability**: Experimental ([how to enable](/cloud/integrations)).
* **Auth**: API key.
* **Connection**: The key from `NEON_API_KEY` is sent as the `Bearer` prefixed `Authorization` header.
* **Docs**: [https://neon.tech/docs/manage/api-keys](https://neon.tech/docs/manage/api-keys)

## Credentials

Set these per environment. See [Connect an integration](/cloud/integrations).

| Variable       | Required | Description                                                                                                    |
| -------------- | -------- | -------------------------------------------------------------------------------------------------------------- |
| `NEON_API_KEY` | Yes      | Neon API Key for Management API access [Docs](https://neon.tech/docs/manage/api-keys).                         |
| `DATABASE_URL` | Yes      | PostgreSQL connection string for database queries [Docs](https://neon.tech/docs/connect/connect-from-any-app). |

## Tools

| Tool           | Access | Description                                          |
| -------------- | ------ | ---------------------------------------------------- |
| List Projects  | Read   | List all Neon projects in your account               |
| Get Project    | Read   | Get details of a specific Neon project               |
| List Branches  | Read   | List all branches for a specific project             |
| Create Branch  | Write  | Create a new branch in a Neon project                |
| List Databases | Read   | List databases on a specific branch of a project     |
| Query Database | Read   | Execute SQL queries against the connected database   |
| List Tables    | Read   | List all tables in the connected database            |
| Describe Table | Read   | Get detailed schema information for a specific table |

## Example prompts

* Show me the status of my Neon projects and their branches.
* List all tables in my database and show me the schema for the main tables.
* Help me query my database to find specific data.
