Integrations
NeonDB
Query your Neon PostgreSQL database
Run SQL queries and explore schemas in your Neon PostgreSQL database.
What Stalar can do
| Tool | Description |
|---|---|
| Query | Execute SQL queries |
| List tables | Get all tables in a schema |
| Describe table | Get column definitions for a table |
| List schemas | Get available database schemas |
Configuration
Required
| Field | Description |
|---|---|
connectionString | Neon database connection string |
Optional
| Field | Description |
|---|---|
defaultSchema | Default schema to use (default: public) |
queryTimeout | Query timeout in milliseconds |
resultLimit | Maximum number of rows to return |
Config file example
integrations:
- name: "neondb-prod"
type: "neondb"
environment: "production"
config:
connectionString: "${NEON_DATABASE_URL}"
# With options
- name: "neondb-analytics"
type: "neondb"
environment: "production"
config:
connectionString: "${NEON_ANALYTICS_URL}"
defaultSchema: "analytics"
queryTimeout: 30000
resultLimit: 1000Example queries
- "What tables are in the database?"
- "Show me the schema for the users table"
- "How many orders were placed today?"
- "What's the most recent user signup?"