Skip to main content
Glama
enrichlayer

Enrich Layer MCP Server

Official
by enrichlayer

Enrich Layer MCP 服务器

一个 MCP(模型上下文协议)服务器,提供 25 个工具,用于通过 Enrich Layer API 丰富公司、个人、联系人、学校和职位数据。

可与任何支持 MCP 的客户端一起使用:Claude Desktop、Claude Code、Cursor、VS Code 等。

快速开始

npx -y @enrichlayer/mcp-server

将您的 API 密钥设置为环境变量:

export ENRICH_LAYER_API_KEY=your_api_key_here

enrichlayer.com/dashboard 获取您的 API 密钥。

Related MCP server: LeadMagic MCP Server

配置

Claude Desktop

添加到您的 claude_desktop_config.json

{
  "mcpServers": {
    "enrich-layer": {
      "command": "npx",
      "args": ["-y", "@enrichlayer/mcp-server"],
      "env": {
        "ENRICH_LAYER_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Desktop(MCPB 扩展)

Releases 下载 .mcpb 文件并在 Claude Desktop 中打开。在设置过程中会提示您输入 API 密钥。

Claude Code

claude mcp add enrich-layer -- npx -y @enrichlayer/mcp-server

然后在您的 shell 中设置环境变量 ENRICH_LAYER_API_KEY

Cursor

添加到您的 Cursor MCP 设置:

{
  "mcpServers": {
    "enrich-layer": {
      "command": "npx",
      "args": ["-y", "@enrichlayer/mcp-server"],
      "env": {
        "ENRICH_LAYER_API_KEY": "your_api_key_here"
      }
    }
  }
}

VS Code

添加到您的 VS Code MCP 设置(.vscode/mcp.json):

{
  "servers": {
    "enrich-layer": {
      "command": "npx",
      "args": ["-y", "@enrichlayer/mcp-server"],
      "env": {
        "ENRICH_LAYER_API_KEY": "your_api_key_here"
      }
    }
  }
}

远程 HTTP 服务器

对于远程部署,服务器还支持 Streamable HTTP 传输:

npm run start:http

这会在端口 3000(可通过 PORT 环境变量配置)上启动一个 Express 服务器,带有用于 JSON-RPC 的 /mcp 端点和用于健康检查的 /health 端点。

可选的 Sentry 自报告

当配置了 SENTRY_DSN 时,服务器会捕获启动、请求和优雅关闭失败。 同时设置 SENTRY_ENVIRONMENTSENTRY_RELEASESENTRY_SERVICE 来控制事件标签。默认值分别为当前的 NODE_ENV、包版本,以及 HTTP 的 enrich-layer-mcp-server 或 stdio 的 enrich-layer-mcp-server-stdio;环境变量始终 优先于这些默认值。缺少或无效的 DSN 会禁用报告,但不会影响服务器启动。失败遥测在发送前会被清理:请求查询字符串被移除,凭据类值被编辑,默认的 PII 和跟踪集成被禁用。清理后,错误文本仍可能被转发,因此仅在此类操作遥测允许的位置进行配置。

应用程序不会加载环境文件。部署/运行时管理器必须导出这些变量或通过其密钥存储注入;切勿将 DSN 提交到源代码或通过请求传递。对于生产环境 mcp.verticalint.co 部署,Vault 注入和部署会单独在 INF-887 中跟踪。

使用示例

1. 查找公司

"查找 Stripe 的公司资料"

这会调用 enrich_company_lookup,参数为 company_name: "Stripe",以查找该公司的职业网络 URL 和个人资料数据。

2. 按角色查找工作邮箱

"查找 Notion 的 CTO 的工作邮箱"

这会串联两个工具:首先用 company_name: "Notion", role: "cto" 调用 enrich_role_lookup 查找该人,然后用其个人资料 URL 调用 enrich_work_email 获取邮箱地址。

3. 检查您的信用余额

"我还剩多少积分?"

这会调用 enrich_credit_balance 显示您剩余的 API 积分。消耗 0 积分。

可用工具(25 个)

公司(7 个工具)

工具

描述

积分

enrich_company_profile

从 URL 获取结构化公司数据

1

enrich_company_lookup

按名称或域名查找公司

2

enrich_company_id_lookup

按数字 ID 查找公司

0

enrich_company_picture

获取公司头像图片 URL

0

enrich_employee_list

列出公司的员工

3/员工

enrich_employee_count

获取员工数量

1

enrich_employee_search

按关键词搜索员工

10

个人(4 个工具)

工具

描述

积分

enrich_person_profile

从 URL 获取结构化个人数据

1

enrich_person_lookup

按姓名+公司查找个人

2

enrich_person_picture

获取个人头像图片 URL

0

enrich_role_lookup

按在公司中的角色查找个人

3

联系人(6 个工具)

工具

描述

积分

enrich_reverse_email

通过邮箱查找个人资料

3

enrich_reverse_phone

通过电话号码查找个人资料

3

enrich_work_email

从个人资料获取工作邮箱

3

enrich_personal_contact

获取个人电话号码

1/联系人

enrich_personal_email

获取个人邮箱地址

1/邮箱

enrich_disposable_email

检查邮箱是否为一次性邮箱

0

学校(2 个工具)

工具

描述

积分

enrich_school_profile

获取结构化学校数据

1

enrich_student_list

列出学校的学生

3/学生

职位(3 个工具)

工具

描述

积分

enrich_job_profile

获取结构化职位发布数据

2

enrich_job_search

搜索职位发布

2

enrich_job_count

统计匹配的职位发布数量

2

搜索(2 个工具)

工具

描述

积分

enrich_company_search

按条件搜索公司

3/URL

enrich_person_search

按条件搜索个人

3/URL

元(1 个工具)

工具

描述

积分

enrich_credit_balance

检查您的信用余额

0

隐私政策

Enrich Layer 仅收集您明确作为工具参数传递的数据(URL、名称、邮箱)。MCP 传输不收集任何对话数据或聊天历史记录,所有 API 请求直接通过 HTTPS 发送到 Enrich Layer API。当配置了可选的 Sentry 自报告时,经过清理的操作失败遥测可能会发送到配置的 Sentry 项目;它与 API 请求路径是分开的,可以通过省略 SENTRY_DSN 来禁用。

完整隐私政策请见 enrichlayer.com/privacy

开发

# Install dependencies
npm install

# Build
npm run build

# Run stdio server (for MCP clients)
npm start

# Run HTTP server (for remote deployments)
npm run start:http

# Test with MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js

API 表面合规性

工具模式遵循已发布的 Enrich Layer OpenAPI 规范——这是 API 表面的唯一权威来源: https://enrichlayer.com/docs/api/v2/openapi.yaml

该规范的一个副本已复制到 spec/enrichlayer-api.yaml,CI 会在每个拉取请求上运行 npm run check:spec。当出现以下情况时,工具会检查失败:

  • 其端点不在规范中;

  • 它暴露了规范中未为该端点记录的参数;

  • 参数的必需/可选标志与规范不一致;

  • 它遗漏了规范标记为必需的参数。

工具未暴露的可选规范参数会报告为警告——工具可以有目的地暴露精选子集。检查仅匹配参数名称和必需性;它不验证枚举值或类型,因为规范未为查询参数编码这些。

当 API 更改时:

npm run update-spec    # refresh spec/enrichlayer-api.yaml from the published URL
npm run build
npm run check:spec     # see which tools drifted, fix their schemas

合规性逻辑位于 scripts/conformance-core.mjs 中,并经过单元测试 (npm test,Node 内置测试运行器)。

许可证

MIT

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    Enables access to LinkedIn data including profile enrichment, company information, job searches, post analytics, and social interactions through the LinkedIn Api8 API with comprehensive search and data retrieval capabilities.
    51
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    Provides 19 B2B data enrichment tools for finding and validating emails, searching company profiles, analyzing job postings, discovering employee information, and researching advertising campaigns through the LeadMagic API.
    18
    7
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI tools to search and enrich B2B leads, including finding professional emails, company profiles, and filtering people and companies by various criteria.
    5
    61
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Account-based marketing enrichment for AI agents. Enriches people and companies from email, LinkedIn URL, or domain with cited multi-source fields.
    63
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Enrich user data by adding social network links based on provided personal information. Integrate…

  • Find company websites and verified business emails through the Potarix Enricher API.

  • Search companies, enrich contacts, and reveal emails and phones from your AI agent.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/enrichlayer/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server