environment-variables.env•1.2 kB
# MCP Firebird Environment Variables Example
# Copy this file to .env in your project root and customize the values
# === Database Connection ===
FIREBIRD_DATABASE=F:\Proyectos\SAI\EMPLOYEE.FDB
FIREBIRD_HOST=127.0.0.1
FIREBIRD_PORT=3050
FIREBIRD_USER=SYSDBA
FIREBIRD_PASSWORD=masterkey
FIREBIRD_ROLE=
# === Wire Encryption (Firebird 3.0+) ===
# Requires node-firebird-driver-native
# Options: Disabled, Enabled, Required
FIREBIRD_WIRECRYPT=Disabled
# === Transport Configuration ===
# Options: stdio, sse, http, unified
TRANSPORT_TYPE=stdio
# For HTTP/SSE transports:
HTTP_PORT=3012
SSE_PORT=3003
# === HTTP Streamable Mode ===
# Default: stateless (true)
# Set to false for stateful mode (requires session management)
STREAMABLE_STATELESS_MODE=true
# Session timeout for stateful mode (milliseconds)
STREAMABLE_SESSION_TIMEOUT_MS=1800000
# === Security ===
# Path to security configuration file (optional)
SECURITY_CONFIG_PATH=
# === Logging ===
# Options: error, warn, info, debug
LOG_LEVEL=info
# === Advanced Options ===
# Use native driver (supports wire encryption)
USE_NATIVE_DRIVER=true
# Page size for query results
PAGE_SIZE=100
# Query timeout (milliseconds)
QUERY_TIMEOUT=30000