neon-postgres
v1.0.3Manage Neon Serverless Postgres projects and databases with the neon-postgres agent skill and the Neon MCP Server
by NeonApache-2.05kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/neon-postgres/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── skills/neon-postgres/SKILL.md└── skills/neon-postgres-egress-optimizer/SKILL.md
Skills2
Guides and best practices for working with Neon Serverless Postgres. Covers getting started, local development with Neon, choosing a connection method, Neon features, authentication (@neondatabase/auth), PostgREST-style data API (@neondatabase/neon-js), Neon CLI, and Neon's Platform API/SDKs. Use for any Neon-related questions.
Diagnose and fix excessive Postgres egress (network data transfer) in a codebase. Use when a user mentions high database bills, unexpected data transfer costs, network transfer charges, egress spikes, "why is my Neon bill so high", "database costs jumped", SELECT * optimization, query overfetching, reduce Neon costs, optimize database usage, or wants to reduce data sent from their database to their application. Also use when reviewing query patterns for cost efficiency, even if the user doesn't explicitly mention egress or data transfer.
Manifests1
{
"name": "neon-postgres",
"version": "1.0.3",
"description": "Manage Neon Serverless Postgres projects and databases with the neon-postgres agent skill and the Neon MCP Server",
"author": {
"name": "Neon",
"email": "andre@neon.tech",
"url": "https://neon.com"
},
"homepage": "https://neon.com/docs/ai/neon-mcp-server",
"repository": "https://github.com/openai/plugins",
"license": "Apache-2.0",
"keywords": [
"neon",
"postgres",
"serverless",
"database",
"mcp",
"sql"
],
"skills": "./skills/",
"apps": "./.app.json",
"interface": {
"displayName": "Neon Postgres",
"shortDescription": "Manage Neon Serverless Postgres projects and databases",
"longDescription": "Use the Neon Postgres plugin to create and manage Neon Serverless Postgres projects and databases. Includes the Neon MCP Server for project and database management, and the neon-postgres skill with guides on connection methods, branching, autoscaling, Neon Auth, and more.",
"developerName": "Neon",
"category": "Developer Tools",
"capabilities": [
"Interactive",
"Write"
],
"websiteURL": "https://neon.com",
"privacyPolicyURL": "https://neon.com/privacy-policy",
"termsOfServiceURL": "https://neon.com/terms-of-service",
"defaultPrompt": [
"Use Neon to create a new Serverless Postgres database for my project and help me connect to it."
],
"brandColor": "#37C38F",
"composerIcon": "./assets/neon-small.svg",
"logo": "./assets/logo.png",
"logoDark": "./assets/logo-dark.png",
"screenshots": []
}
}