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) 689 B
import { IApolloClient } from "../../common/interfaces/apollo-client.interface.js"; import { ApolloClient } from "../network/apollo-client.js"; export declare class ApolloClientAdapter implements IApolloClient { private apolloClient; constructor(apolloClient: ApolloClient); 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>; }