UNPKG

mcp-magma-handbook

Version:

Enhanced MCP server with multi-query search, hybrid search, and collections for MAGMA computational algebra system

37 lines 991 B
import { z } from "zod"; export declare const configSchema: z.ZodObject<{ openaiApiKey: z.ZodString; debug: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>; }, "strip", z.ZodTypeAny, { openaiApiKey: string; debug: boolean; }, { openaiApiKey: string; debug?: boolean | undefined; }>; export default function createStatelessServer({ config, }: { config: z.infer<typeof configSchema>; }): import("@modelcontextprotocol/sdk/server/index.js").Server<{ method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; } | undefined; } | undefined; }, { method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; } | undefined; }, { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; }>; //# sourceMappingURL=smithery-index.d.ts.map