smithery.ai

neondb-serverless

Use Neon serverless Postgres with branching, connection pooling, and instant scalability for modern applications with Prisma or Drizzle ORM integration.

First seen Mar 27, 2026

Installation

$ npx skills add https://smithery.ai

Summary

  • Use Neon serverless Postgres with branching, connection pooling, and instant scalability for modern applications with Prisma or Drizzle ORM integration.
  • Use when setting up serverless Postgres databases, implementing database branching for preview environments, configuring connection pooling, optimizing for serverless cold starts, using Prisma with Neon, implementing database migrations, scaling databases automatically, or building applications on Vercel/Netlify with Postgres.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,244 B
  • docs SUMMARY.md 506 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

NeonDB Serverless - PostgreSQL for Modern Apps

When to use this skill

  • Setting up serverless Postgres databases
  • Implementing database branching for previews
  • Configuring connection pooling for serverless
  • Optimizing database for cold starts
  • Using Prisma or Drizzle ORM with Neon
  • Implementing automated database migrations
  • Scaling databases without manual intervention
  • Building Next.js apps with Postgres on Vercel
  • Creating preview databases per Git branch
  • Implementing instant database rollbacks
  • Using Postgres in serverless functions
  • Optimizing connection management for edge functions

When to use this skill

  • Using NeonDB serverless PostgreSQL, implementing connection pooling, or building edge-compatible database apps.
  • When working on related tasks or features
  • During development that requires this expertise

Use when: Using NeonDB serverless PostgreSQL, implementing connection pooling, or building edge-compatible database apps.

Key Patterns

Connection Pooling (Critical!)

\\\`typescript import { Pool } from '@neondatabase/serverless';

const pool = new Pool({ connectionString: process.env.DATABASE_URL });

export async function query(text: string, params: any[]) { const client = await pool.connect(); try { return await client.query(text, params); } finally { client.release(); } } \\\`

Edge Runtime Compatible

\\\`typescript import { neon } from '@neondatabase/serverless';

const sql = neon(process.env.DATABASE_URL!);

export const runtime = 'edge';

export async function GET() { const users = await sqlSELECT * FROM users; return Response.json(users); } \\\`

Resources