UNPKG

@edjl/rest-mcp

Version:

REST API tools for MCP (Model Context Protocol)

10 lines 270 B
import { z } from 'zod'; interface Tool { name: string; description: string; inputSchema: z.ZodSchema<any>; handler: (params: any, authToken?: string) => Promise<any>; } export declare const patchTool: Tool; export {}; //# sourceMappingURL=patch.d.ts.map