(args: TArgs, context?: ServerToolContext)
| 39 | export interface BaseServerTool<TArgs = unknown, TResult = unknown> { |
| 40 | name: string |
| 41 | execute(args: TArgs, context?: ServerToolContext): Promise<TResult> |
| 42 | /** Optional Zod schema for input validation */ |
| 43 | inputSchema?: z.ZodType<TArgs> |
| 44 | /** Optional Zod schema for output validation */ |
no outgoing calls
no test coverage detected