@rolandohuber/mysql-mcp-server
Version:
A comprehensive MCP server for MySQL database operations with 16 tools, multi-transport support, and intelligent test data generation
31 lines (28 loc) • 801 B
text/typescript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { MysqlService } from '../services/MysqlService.js';
export const querySchema: Tool = {
name: 'mysql_query',
description: 'Executes any SQL query on the MySQL database',
inputSchema: {
type: 'object',
properties: {
query: {
type: 'string',
description: 'SQL query to execute',
},
},
required: ['query'],
},
};
export async function queryHandler(mysqlService: MysqlService, args: { query: string }): Promise<any> {
try {
const result = await mysqlService.query(args.query);
return {
rows: result.rows,
affectedRows: result.affectedRows,
insertId: result.insertId,
};
} catch (error) {
throw new Error(`Query execution failed: ${error}`);
}
}