
Lets you use Claude Desktop, or any MCP Client, to use natural language to accomplish things with Neon.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Lists the first 10 Neon projects in your account, providing a summary of each project. If you can't find a specific project, increase the limit by passing a higher value to the `limit` parameter.
Lists Neon projects shared with the current user. Supports a search parameter and limiting the number of projects returned (default: 10).
Fetches detailed information about a specific Neon project, including its ID, name, and associated branches and databases.
Creates a new Neon project in your Neon account. A project acts as a container for branches, databases, roles, and computes.
Deletes an existing Neon project and all its associated resources.
Lists all organizations that the current user has access to. Optionally filter by organization name or ID using the search parameter.
Creates a new branch within a specified Neon project. Leverages Neon's branching feature for development, testing, or migrations.
Deletes an existing branch from a Neon project.
Retrieves details about a specific branch, such as its name, ID, and parent branch.
Lists compute endpoints for a project or specific branch, including compute ID, type, size, last active time, and autoscaling information.
Shows the schema diff between the child branch and its parent.
Resets the current branch to its parent's state, discarding local changes. Automatically preserves to backup if branch has children, or optionally preserve on request with a custom name.
Returns your database connection string.
Executes a single SQL query against a specified Neon database. Supports both read and write operations.
Executes a series of SQL queries within a single transaction against a Neon database.
Lists all tables within a specified Neon database.
Retrieves the schema definition of a specific table, detailing columns, data types, and constraints.
Initiates a database migration process. Critically, it creates a temporary branch to apply and test the migration safely before affecting the main branch.
Finalizes and applies a prepared database migration to the main branch. This action merges changes from the temporary migration branch and cleans up temporary resources.
Identifies performance bottlenecks by finding the slowest queries in a database. Requires the pg_stat_statements extension.
Provides detailed execution plans for SQL queries to help identify performance bottlenecks.
Analyzes query performance and suggests optimizations, like index creation. Creates a temporary branch for safely testing these optimizations.
Finalizes query tuning by either applying optimizations to the main branch or discarding them. Cleans up the temporary tuning branch.
Provisions Neon Auth for a Neon project. It allows developers to easily set up authentication infrastructure by creating an integration with an Auth provider.
Provisions the Neon Data API for HTTP-based database access with optional JWT authentication via Neon Auth or external JWKS providers.
Searches across organizations, projects, and branches matching a query. Returns IDs, titles, and direct links to the Neon Console.
Fetches detailed information about a specific organization, project, or branch using an ID (typically from the search tool).
Lists all available Neon documentation pages by fetching the index from `https://neon.com/docs/llms.txt`. Returns page URLs and titles that can be fetched individually using the `get_doc_resource` tool.
Fetches a specific Neon documentation page as markdown content. Use the `list_docs_resources` tool first to discover available page slugs, then pass the slug to this tool.