UNPKG

@callzero/mcp

Version:

MCP server for CallZero AI phone call automation

16 lines (15 loc) 661 B
import type { Tool } from "@modelcontextprotocol/sdk/types.js"; import { CallZeroHttpClient } from "../client/httpClient.js"; import { z } from "zod"; export declare const SearchFormTemplatesInputSchema: z.ZodObject<{ query: z.ZodString; limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>; }, z.core.$strip>; export type SearchFormTemplatesInput = z.infer<typeof SearchFormTemplatesInputSchema>; export declare function createSearchFormTemplatesTool(client: CallZeroHttpClient): Tool; export declare function searchFormTemplates(input: unknown, client: CallZeroHttpClient): Promise<{ content: { type: "text"; text: string; }[]; }>;