Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
VERTICA_SSL | No | Enable SSL/TLS for database connection | false |
VERTICA_HOST | No | Vertica database host | localhost |
VERTICA_PORT | No | Vertica database port | 5433 |
VERTICA_USER | No | Vertica database user | dbadmin |
VERTICA_DATABASE | No | Vertica database name | VMart |
VERTICA_PASSWORD | No | Vertica database password | |
ALLOW_DDL_OPERATION | No | Allow DDL operations | false |
ALLOW_DELETE_OPERATION | No | Allow DELETE operations | false |
ALLOW_INSERT_OPERATION | No | Allow INSERT operations | false |
ALLOW_UPDATE_OPERATION | No | Allow UPDATE operations | false |
SCHEMA_DDL_PERMISSIONS | No | Schema-specific DDL permissions (format: schema1:true,schema2:false) | |
VERTICA_CONNECTION_LIMIT | No | Maximum number of database connections | 10 |
SCHEMA_DELETE_PERMISSIONS | No | Schema-specific DELETE permissions (format: schema1:true,schema2:false) | |
SCHEMA_INSERT_PERMISSIONS | No | Schema-specific INSERT permissions (format: schema1:true,schema2:false) | |
SCHEMA_UPDATE_PERMISSIONS | No | Schema-specific UPDATE permissions (format: schema1:true,schema2:false) | |
VERTICA_SSL_REJECT_UNAUTHORIZED | No | Reject unauthorized SSL certificates | true |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
execute_query | Execute a SQL query and return the results. |
stream_query | Execute a SQL query and stream the results in batches. |
copy_data | Copy data into a Vertica table using COPY command. |
get_table_structure | Get the structure of a table including columns, data types, and constraints. |
list_indexes | List all indexes for a specific table. |
list_views | List all views in a schema. |