UNPKG

@zhaoweizll/mysql-mcp-server

Version:

A Model Context Protocol (MCP) server that enables secure interaction with MySQL/MariaDB/TiDB/AWS OceanBase/RDS/Aurora MySQL DataBases - TypeScript version

12 lines 320 B
#!/usr/bin/env node /** * Executable entry point for MySQL MCP Server */ import { main } from './server.js'; import { logger } from './utils/logger-util.js'; // 直接启动服务器 main().catch((error) => { logger.error(`Server startup failed: ${error}`); process.exit(1); }); //# sourceMappingURL=bin.js.map