Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_DIR | No | Directory for log files | ./logs |
| LOG_LEVEL | No | Log level: debug, info, warn, error | info |
| DATABASE_URL | No | Database connection string in the format postgresql://user:password@localhost:5432/dbname | |
| PGIDLETIMEOUT | No | Idle timeout for connections in milliseconds | 10000 |
| PGMAXPOOLSIZE | No | Maximum connection pool size | 10 |
| PGMINPOOLSIZE | No | Minimum connection pool size | 2 |
| QUERY_TIMEOUT | No | Query timeout in milliseconds (default: 30s) | 30000 |
| MAX_RESULT_ROWS | No | Maximum number of result rows to prevent memory exhaustion | 10000 |
| ENABLE_RATE_LIMIT | No | Enable or disable rate limiting | true |
| RATE_LIMIT_WINDOW_MS | No | Rate limit window in milliseconds (default: 1 minute) | 60000 |
| RATE_LIMIT_MAX_REQUESTS | No | Maximum number of requests allowed within the rate limit window | 100 |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
No tools | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |