Skip to main content
Glama

MySQL Database Access

MIT License
419
17
  • Linux
  • Apple
/** * Type definitions for MySQL MCP server */ // MySQL connection configuration export interface MySQLConfig { host: string; port: number; user: string; password?: string; database?: string; // Connection pool options connectionLimit?: number; queueLimit?: number; connectTimeout?: number; idleTimeout?: number; maxIdle?: number; } // Database information export interface DatabaseInfo { name: string; } // Table information export interface TableInfo { name: string; type: string; } // Column information export interface ColumnInfo { Field: string; Type: string; Null: string; Key: string; Default: string | null; Extra: string; } // Query result export interface QueryResult { rows: any[]; fields: any[]; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dpflucas/mysql-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server