@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
11 lines (10 loc) • 439 B
TypeScript
export interface IApolloClient {
peopleEnrichment(args: any): Promise<any>;
organizationEnrichment(args: any): Promise<any>;
peopleSearch(args: any): Promise<any>;
organizationSearch(args: any): Promise<any>;
organizationJobPostings(organizationId: string): Promise<any>;
getPersonEmail(apolloId: string): Promise<any>;
employeesOfCompany(args: any): Promise<any>;
contactSearch(args: any): Promise<any>;
}