People Data Labs MCP Server

People Data Labs MCP Server

Provides comprehensive access to People Data Labs' data models and search capabilities, enabling enrichment of person and company profiles, multi-criteria searches, and autocomplete functionality through a Model Context Protocol interface.

Category
访问服务器

Tools

search_skills

Search for skills matching specific criteria

autocomplete

Get autocomplete suggestions for a partial query

enrich_person

Enrich a person profile with additional data from People Data Labs

search_people

Search for people matching specific criteria

bulk_person_enrich

Enrich multiple person profiles in a single request

enrich_company

Enrich a company profile with additional data

search_companies

Search for companies matching specific criteria

search_schools

Search for schools matching specific criteria

search_locations

Search for locations matching specific criteria

search_job_titles

Search for job titles matching specific criteria

README

People Data Labs MCP Server

This is a Model Context Protocol (MCP) server that wraps the People Data Labs API. It provides comprehensive access to People Data Labs' various data models and search capabilities.

<a href="https://glama.ai/mcp/servers/@phxdev1/peopledatalabs-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@phxdev1/peopledatalabs-mcp/badge" alt="People Data Labs Server MCP server" /> </a>

Features

Person API

  • Person Enrichment: Enrich a person's profile with additional data
  • People Search: Search for people matching specific criteria using SQL-like queries
  • Bulk Person Enrichment: Enrich multiple person profiles in a single request

Company API

  • Company Enrichment: Enrich a company profile with additional data
  • Company Search: Search for companies matching specific criteria

Additional Data Models

  • School Search: Search for schools matching specific criteria
  • Location Search: Search for locations matching specific criteria
  • Job Title Search: Search for job titles matching specific criteria
  • Skill Search: Search for skills matching specific criteria

Utilities

  • Autocomplete: Get autocomplete suggestions for various fields

Setup

  1. Clone this repository
  2. Install dependencies:
    npm install
    
  3. Build the project:
    npm run build
    
  4. Configure your People Data Labs API key using one of the provided configuration scripts

Configuration

Automatic Configuration

This project includes scripts to automatically configure the MCP server for both Claude Desktop and VS Code:

For Claude Desktop:

npm run config:claude

For VS Code:

npm run config:vscode

Both scripts will:

  1. Check if the configuration file exists and create it if needed
  2. Prompt you for your People Data Labs API key
  3. Add the MCP server configuration to the appropriate file
  4. Provide instructions for next steps

Manual Configuration

If you prefer to configure the MCP server manually, you need to add it to your MCP settings file. The location of this file depends on your environment:

  • For VS Code: %APPDATA%\Code\User\globalStorage\rooveterinaryinc.roo-cline\settings\mcp_settings.json
  • For Claude Desktop: %APPDATA%\Claude\claude_desktop_config.json

Add the following configuration to the mcpServers object in your MCP settings file:

{
  "mcpServers": {
    "peopledatalabs": {
      "command": "node",
      "args": ["path/to/peopledatalabs-mcp/build/index.js"],
      "env": {
        "PDL_API_KEY": "your-api-key-here"
      }
    }
  }
}

Replace:

  • path/to/peopledatalabs-mcp/build/index.js with the actual path to the built index.js file
  • your-api-key-here with your actual People Data Labs API key

Available Tools

Person API Tools

enrich_person

Enrich a person profile with additional data from People Data Labs.

Parameters:

  • email (string, optional): Email address of the person
  • phone (string, optional): Phone number of the person
  • name (string, optional): Full name of the person
  • profile (array of strings, optional): Social media profile URLs of the person
  • location (string, optional): Location of the person (city, state, country)
  • company (string, optional): Company name where the person works
  • title (string, optional): Job title of the person
  • min_likelihood (number, optional): Minimum likelihood score (0-1) for the match

Note: At least one of email, phone, name, or profile must be provided.

search_people

Search for people matching specific criteria using SQL-like queries.

Parameters:

  • query (string, required): SQL-like query to search for people
  • size (number, optional): Number of results to return (max 100)

bulk_person_enrich

Enrich multiple person profiles in a single request.

Parameters:

  • requests (array, required): Array of person enrichment requests

Company API Tools

enrich_company

Enrich a company profile with additional data.

Parameters:

  • name (string, optional): Name of the company
  • website (string, optional): Website of the company
  • profile (array of strings, optional): Social media profile URLs of the company
  • ticker (string, optional): Stock ticker symbol of the company

Note: At least one of name, website, profile, or ticker must be provided.

search_companies

Search for companies matching specific criteria.

Parameters:

  • query (string, required): SQL-like query to search for companies
  • size (number, optional): Number of results to return (max 100)

School API Tools

search_schools

Search for schools matching specific criteria.

Parameters:

  • query (string, required): SQL-like query to search for schools
  • size (number, optional): Number of results to return (max 100)

Location API Tools

search_locations

Search for locations matching specific criteria.

Parameters:

  • query (string, required): SQL-like query to search for locations
  • size (number, optional): Number of results to return (max 100)

Job Title API Tools

search_job_titles

Search for job titles matching specific criteria.

Parameters:

  • query (string, required): SQL-like query to search for job titles
  • size (number, optional): Number of results to return (max 100)

Skill API Tools

search_skills

Search for skills matching specific criteria.

Parameters:

  • query (string, required): SQL-like query to search for skills
  • size (number, optional): Number of results to return (max 100)

Utility Tools

autocomplete

Get autocomplete suggestions for a partial query.

Parameters:

  • field (string, required): Field to autocomplete (company, school, title, skill, location)
  • text (string, required): Partial text to autocomplete
  • size (number, optional): Number of results to return (max 100)

Example Usage

Person API Examples

<use_mcp_tool>
<server_name>peopledatalabs</server_name>
<tool_name>enrich_person</tool_name>
<arguments>
{
  "email": "john.smith@example.com"
}
</arguments>
</use_mcp_tool>
<use_mcp_tool>
<server_name>peopledatalabs</server_name>
<tool_name>search_people</tool_name>
<arguments>
{
  "query": "SELECT * FROM person WHERE location='San Francisco' AND job_title='Software Engineer'",
  "size": 5
}
</arguments>
</use_mcp_tool>

Company API Examples

<use_mcp_tool>
<server_name>peopledatalabs</server_name>
<tool_name>enrich_company</tool_name>
<arguments>
{
  "name": "Apple Inc."
}
</arguments>
</use_mcp_tool>
<use_mcp_tool>
<server_name>peopledatalabs</server_name>
<tool_name>search_companies</tool_name>
<arguments>
{
  "query": "SELECT * FROM company WHERE location='New York' AND industry='Finance'",
  "size": 5
}
</arguments>
</use_mcp_tool>

Autocomplete Example

<use_mcp_tool>
<server_name>peopledatalabs</server_name>
<tool_name>autocomplete</tool_name>
<arguments>
{
  "field": "company",
  "text": "Goog"
}
</arguments>
</use_mcp_tool>

License

Apache 2.0

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选