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

17 lines (16 loc) 617 B
import { z } from "zod"; export declare const infoToolName = "info"; export declare const infoToolDescription = "Get information about MySQL databases"; export declare const InfoToolSchema: z.ZodObject<{ environment: z.ZodEnum<["local", "development", "staging", "production"]>; }, "strip", z.ZodTypeAny, { environment: "local" | "development" | "staging" | "production"; }, { environment: "local" | "development" | "staging" | "production"; }>; export declare function runInfoTool(params: z.infer<typeof InfoToolSchema>): Promise<{ content: { type: string; text: string; }[]; }>;