Connection Reference
This page provides a comprehensive reference for all connection options available for each supported database type.
SQLite Connection Options
SQLite is the simplest database to connect to, as it only requires a path to the database file.
node dist/src/index.js /path/to/your/database.db
Special Paths
:memory:
- Creates an in-memory database (data is lost when connection is closed)""
(empty string) - Creates a temporary on-disk database
SQL Server Connection Options
Option | Description | Default | Required |
---|---|---|---|
--sqlserver | Specifies SQL Server mode | - | Yes |
--server | SQL Server hostname or IP | - | Yes |
--database | Database name | - | Yes |
--user | SQL Server username | - | No* |
--password | SQL Server password | - | No* |
--port | SQL Server port | 1433 | No |
--trustServerCertificate | Trust server certificate (true/false) | false | No |
--connectionTimeout | Connection timeout in ms | 15000 | No |
--requestTimeout | Request timeout in ms | 15000 | No |
*Windows Authentication is used if user and password are omitted
Example with Windows Authentication
node dist/src/index.js --sqlserver --server localhost\\SQLEXPRESS --database Northwind
Example with SQL Authentication
node dist/src/index.js --sqlserver --server dbserver.example.com --database Northwind --user sa --password P@ssw0rd --port 1433
PostgreSQL Connection Options
Option | Description | Default | Required |
---|---|---|---|
--postgresql or --postgres | Specifies PostgreSQL mode | - | Yes |
--host | PostgreSQL hostname or IP | - | Yes |
--database | Database name | - | Yes |
--user | PostgreSQL username | - | No |
--password | PostgreSQL password | - | No |
--port | PostgreSQL port | 5432 | No |
--ssl | Use SSL connection (true/false) | false | No |
--connection-timeout | Connection timeout in ms | 30000 | No |
Basic Example
node dist/src/index.js --postgresql --host localhost --database sample_db --user postgres --password secret
Example with SSL and Custom Port
node dist/src/index.js --postgresql --host dbserver.example.com --database sample_db --user appuser --password Secure123! --port 5433 --ssl true
Environment Variables
Instead of specifying sensitive credentials on the command line, you can use environment variables:
SQL Server Environment Variables
MSSQL_SERVER
- SQL Server hostnameMSSQL_DATABASE
- Database nameMSSQL_USER
- SQL Server usernameMSSQL_PASSWORD
- SQL Server password
PostgreSQL Environment Variables
PGHOST
- PostgreSQL hostnamePGDATABASE
- Database namePGUSER
- PostgreSQL usernamePGPASSWORD
- PostgreSQL passwordPGPORT
- PostgreSQL port
Connection Pooling
All database connections use connection pooling for better performance:
- SQLite: Uses a single persistent connection
- SQL Server: Default pool of 5 connections
- PostgreSQL: Default pool of 10 connections
Connection Security
For secure connections:
-
SQL Server: Use
--trustServerCertificate false
in production and ensure proper SSL certificates are installed on the server. -
PostgreSQL: Use
--ssl true
and ensure the server is configured for SSL connections. -
For all database types, consider using environment variables instead of passing credentials on the command line.
-
Store your Claude Desktop configuration file with appropriate file system permissions.