# Neon Database Manager

> Tool for managing Neon Postgres databases. Use for listing projects, inspecting schema, and running queries.

- Skill: `majiayu000/neon-database-manager` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/neon-database-manager`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/neon-database-manager/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/neon-database-manager

---


# Neon Database Manager Skill

This skill grants access to the `neon` MCP tools. Use this to manage your Serverless Postgres instances.

## When to use

- Inspecting Neon projects and branches.
- Querying tables in a Neon database.
- Checking database schema.

## Available Tools (Context Loaded)

The following tools are available via the `neon` MCP server:

### Management

- `mcp__neon__list_projects`: View available Neon projects.

### Inspection & Querying

- `mcp__neon__get_database_tables`: List tables in a specific branch/database.
- `mcp__neon__run_sql`: Execute SQL queries against the database.

## Best Practices

1. **Read-Only First**: Prefer `run_sql` for SELECT statements. Be cautious with data modification.
2. **Schema Awareness**: Use `get_database_tables` before constructing complex queries to ensure column names are correct.

## Example Workflow

1. User: "Check the users table in the dev branch."
2. Agent: Calls `list_projects` to find the project ID.
3. Agent: Calls `get_database_tables` to verify the table exists.
4. Agent: Calls `run_sql` to select data.

