UNPKG

mysql-query-mcp-server

Version:

MySQL Query MCP server for AI assistants - execute read-only MySQL queries from Cursor IDE, Windsurf, or Claude Desktop

11 lines (10 loc) 452 B
import { z } from "zod"; export declare const environmentsToolName = "environments"; export declare const environmentsToolDescription = "List available MySQL database environments"; export declare const EnvironmentsToolSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare function runEnvironmentsTool(_params?: z.infer<typeof EnvironmentsToolSchema>): Promise<{ content: { type: string; text: string; }[]; }>;