Stalar
Integrations

NeonDB

Query your Neon PostgreSQL database

Run SQL queries and explore schemas in your Neon PostgreSQL database.

What Stalar can do

ToolDescription
QueryExecute SQL queries
List tablesGet all tables in a schema
Describe tableGet column definitions for a table
List schemasGet available database schemas

Configuration

Required

FieldDescription
connectionStringNeon database connection string

Optional

FieldDescription
defaultSchemaDefault schema to use (default: public)
queryTimeoutQuery timeout in milliseconds
resultLimitMaximum 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: 1000

Example 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?"