@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
37 lines (36 loc) • 900 B
TypeScript
export interface PeopleEnrichmentQuery {
first_name?: string;
last_name?: string;
email?: string;
domain?: string;
organization_name?: string;
[key: string]: any;
}
export interface OrganizationEnrichmentQuery {
domain?: string;
name?: string;
[key: string]: any;
}
export interface PeopleSearchQuery {
q_organization_domains_list?: string[];
person_titles?: string[];
person_seniorities?: string[];
[key: string]: any;
}
export interface OrganizationSearchQuery {
q_organization_domains_list?: string[];
organization_locations?: string[];
[key: string]: any;
}
export interface EmployeesOfCompanyQuery {
company: string;
website_url?: string;
linkedin_url?: string;
[key: string]: any;
}
export interface ContactSearchQuery {
q_keywords?: string;
page?: number;
per_page?: number;
[key: string]: any;
}