@apify/actors-mcp-server
Version:
Model Context Protocol Server for Apify
21 lines • 669 B
TypeScript
import { z } from 'zod';
import type { ToolEntry } from '../types';
export declare const addToolArgsSchema: z.ZodObject<{
actor: z.ZodString;
}, "strip", z.ZodTypeAny, {
actor: string;
}, {
actor: string;
}>;
export declare const addTool: ToolEntry;
export declare const removeToolArgsSchema: z.ZodObject<{
toolName: z.ZodEffects<z.ZodString, string, string>;
}, "strip", z.ZodTypeAny, {
toolName: string;
}, {
toolName: string;
}>;
export declare const removeTool: ToolEntry;
export declare const helpToolArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const helpTool: ToolEntry;
//# sourceMappingURL=helpers.d.ts.map