UNPKG

@rockship/apollo-io-mcp

Version:

A powerful Model Context Protocol (MCP) server implementation for seamless Apollo.io API integration, enabling AI assistants to interact with Apollo.io data

15 lines (14 loc) 511 B
import { z } from "zod"; import { IApolloClient } from "../interfaces/apollo-client.interface.js"; import { ToolDefinition } from "../interfaces/tool.interface.js"; export declare class GetPersonEmailTool implements ToolDefinition { private apolloClient; name: string; title: string; description: string; schema: { apollo_id: z.ZodString; }; constructor(apolloClient: IApolloClient); handler(args: any): Promise<import("../interfaces/tool.interface.js").ToolResponse>; }