MCPcopy
hub / github.com/benborla/mcp-server-mysql / MySQLConnectionConfig

Interface MySQLConnectionConfig

src/utils/index.ts:47–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45
46// MySQL connection configuration type
47export interface MySQLConnectionConfig {
48 host?: string;
49 port?: number;
50 user?: string;
51 password?: string;
52 database?: string;
53 socketPath?: string;
54}
55
56// Function to parse MySQL connection string (mysql CLI format)
57// Example: mysql --default-auth=mysql_native_password -A -hrdsproxy.staging.luno.com -P3306 -uUSER -pPASS database_name

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected