UNPKG

@kya-os/mcp-i

Version:

The TypeScript MCP framework with identity features built-in

10 lines (9 loc) 266 B
import { z } from "zod"; export declare const pathsConfigSchema: z.ZodObject<{ tools: z.ZodDefault<z.ZodString>; }, "strip", z.ZodTypeAny, { tools: string; }, { tools?: string | undefined; }>; export type PathsConfig = z.infer<typeof pathsConfigSchema>;