Back to MCP directory
publicPublicdnsLocal runtime

apollo-io-mcp-server

一个基于Model Context Protocol的服务器,用于集成Apollo.io API,使AI助手能够无缝访问和操作Apollo.io的数据,包括人员和组织信息丰富、搜索以及职位发布查询等功能。

article

README

🚀 Apollo.io MCP 服务器

一个强大的模型上下文协议(MCP)服务器实现,支持与 Apollo.io API 的无缝集成。借助该服务器,AI 助手能够执行人民信息丰富化、公司信息丰富化、人员搜索、公司搜索和特定公司的职位发布查询等操作,为信息获取和处理提供便利。

TypeScript Apollo.io API MCP SDK License: MIT

🚀 快速开始

安装依赖

npm install

启动服务器

npm run dev

📦 安装指南

配置

更新 src/apollo-client.ts 中的配置:

export const APOLLO_API_KEY = 'your_api_key_here';
export const API_BASE_URL = 'https://api.apollo.io/v1';

💻 使用示例

基础用法

以下是几个常见操作的使用示例:

人民信息丰富化

await apolloClient.peopleEnrichment({
  first_name: 'John',
  last_name: 'Doe',
  email: 'john.doe@example.com'
});

公司信息丰富化

await apolloClient.organizationEnrichment({
  domain: 'apollo.io'
});

人员搜索

await apolloClient.peopleSearch({
  q_organization_domains_list: ['amazon.com'],
  person_titles: ['Marketing Manager'],
  person_seniorities: ['vp']
});

公司搜索

await apolloClient.organizationSearch({
  organization_locations: ['Japan', 'Ireland']
});

特定公司的职位发布

await apolloClient.organizationJobPostings({
  organization_id: '5e60b6381c85b4008c83'
});

📚 详细文档

📄 许可证

本项目采用 MIT 许可证。有关详细信息,请参阅 LICENSE 文件。

关键字

Apollo.io, 模型上下文协议, MCP, AI 助手, TypeScript, API 集成, Apollo.io API, 人民信息丰富化, 公司信息丰富化, 人员搜索, 公司搜索, 职位发布, AI 工具

READY-TO-PASTE CONFIG

MCP client config generator

Choose your client, fill the required environment variables, then copy a config generated from this server's published metadata

terminal
data_object

This entry does not contain a standard command or remote URL, so a safe client config cannot be generated automatically

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client