@kya-os/mcp-i
Version:
The TypeScript MCP framework with identity features built-in
10 lines (9 loc) • 339 B
TypeScript
import { z } from "zod";
export declare const stdioTransportConfigSchema: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
debug: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
debug: boolean;
}, {
debug?: boolean | undefined;
}>]>>;
export type StdioTransportConfig = z.infer<typeof stdioTransportConfigSchema>;