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

31 lines 1.01 kB
export class ApolloClientAdapter { apolloClient; constructor(apolloClient) { this.apolloClient = apolloClient; } async peopleEnrichment(args) { return this.apolloClient.peopleEnrichment(args); } async organizationEnrichment(args) { return this.apolloClient.organizationEnrichment(args); } async peopleSearch(args) { return this.apolloClient.peopleSearch(args); } async organizationSearch(args) { return this.apolloClient.organizationSearch(args); } async organizationJobPostings(organizationId) { return this.apolloClient.organizationJobPostings(organizationId); } async getPersonEmail(apolloId) { return this.apolloClient.getPersonEmail(apolloId); } async employeesOfCompany(args) { return this.apolloClient.employeesOfCompany(args); } async contactSearch(args) { return this.apolloClient.contactSearch(args); } } //# sourceMappingURL=apollo-client.adapter.js.map