UNPKG

@rolandohuber/mysql-mcp-server

Version:

A comprehensive MCP server for MySQL database operations with 16 tools, multi-transport support, and intelligent test data generation

12 lines 400 B
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; export class StdioAdapter { constructor(server) { this.server = server; } async start() { const transport = new StdioServerTransport(); await this.server.connect(transport); console.error('MCP MySQL Server running on stdio'); } } //# sourceMappingURL=StdioAdapter.js.map