linkedin-profile-scraper
Lakome LinkedIn MCP Server
一个基于 Lakome API 的轻量级 Model Context Protocol (MCP) 服务器,为 AI 智能体提供实时 LinkedIn 个人资料提取能力。
该服务器充当 LLM 客户端(如 Claude Desktop、Cursor、Cline、Roo Code 以及自定义 AI 智能体)与 Lakome LinkedIn 智能端点之间的桥梁。
⚡ 功能特性
标准 stdio 传输:兼容任何标准 MCP 客户端。
单一专用工具:提供
extract_linkedin_profile,用于提取完整的结构化个人资料详情(工作经验、教育背景、技能、职业头衔、个人简介、联系方式等)。批量处理:支持在单个请求中查询单个或多个 LinkedIn 个人资料 URL。
错误处理:验证认证密钥并返回格式化的错误反馈。
Related MCP server: SalesTouch
📋 前置要求
Node.js v18.0.0 或更高版本
一个 Lakome API Key(在 mcp.lakome.in 获取)
🔑 设置你的 LAKOME_API_KEY
服务器需要你的 LAKOME_API_KEY 来对发送至 Lakome API 端点的请求进行身份验证。
在 macOS / Linux 上
export LAKOME_API_KEY="your_actual_lakome_api_key_here"在 Windows 上(PowerShell)
$env:LAKOME_API_KEY="your_actual_lakome_api_key_here"在 Windows 上(命令提示符)
set LAKOME_API_KEY=your_actual_lakome_api_key_here🚀 安装与客户端配置
1. Claude Desktop 设置
将服务器配置添加到你的 claude_desktop_config.json 中:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"lakome-linkedin": {
"command": "node",
"args": [
"/absolute/path/to/mcp-server/index.js"
],
"env": {
"LAKOME_API_KEY": "your_actual_lakome_api_key_here"
}
}
}
}Windows 用户注意:请将
/absolute/path/to/mcp-server/index.js替换为你的绝对 Windows 路径(例如D:\\extensions and projects\\lakome API project\\mcp-server\\index.js)。
2. Cursor IDE 设置
将以下内容添加到你的项目 .cursor/mcp.json 或全局 MCP 设置中:
{
"mcpServers": {
"lakome-linkedin": {
"command": "node",
"args": [
"./mcp-server/index.js"
],
"env": {
"LAKOME_API_KEY": "your_actual_lakome_api_key_here"
}
}
}
}3. Smithery.ai CLI
你可以通过 Smithery 自动安装并运行此服务器:
npx -y @smithery/cli install @lakome/linkedin-mcp --client claude🛠️ 工具参考
extract_linkedin_profile
从单个或多个 LinkedIn 个人资料 URL 中提取全面、结构化的个人资料数据与情报。
参数
名称 | 类型 | 必填 | 描述 |
|
| 是 | 要提取的 LinkedIn 个人资料 URL 数组(例如 |
示例调用
{
"profileUrls": [
"https://www.linkedin.com/in/williamhgates",
"https://www.linkedin.com/in/satyanadella"
]
}示例输出响应
[
{
"url": "https://www.linkedin.com/in/williamhgates",
"data": {
"fullName": "Bill Gates",
"headline": "Co-chair, Bill & Melinda Gates Foundation",
"location": "Seattle, Washington, United States",
"summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy...",
"experiences": [
{
"title": "Co-chair",
"company": "Bill & Melinda Gates Foundation",
"dateRange": "2000 - Present"
}
],
"education": [
{
"schoolName": "Harvard University",
"degreeName": "Honorary Doctorate",
"fieldOfStudy": "Law"
}
],
"skills": ["Philanthropy", "Software Development", "Global Health"]
},
"status": "success"
}
]🧪 本地测试与开发
安装依赖:
cd mcp-server
npm install本地运行服务器:
LAKOME_API_KEY="your_api_key" node index.js使用 MCP Inspector 检查:
npx @modelcontextprotocol/inspector node index.js📄 许可证
MIT © Lakome
Maintenance
Tools
Related MCP Servers
- AlicenseAqualityDmaintenanceHigh-performance autonomous MCP server that turns LinkedIn into an API for AI workflows, enabling profile management, job search, content posting, and document generation.141MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for AI-native LinkedIn prospecting. It enables lead research, audience building, conversation management, and controlled outreach actions such as messaging and publishing through an OAuth-protected remote endpoint.2MIT
- AlicenseAqualityBmaintenanceAn MCP server that lets AI assistants like Claude read LinkedIn data through your own logged-in browser session. Access profiles and companies, search for jobs, or get job details.19Apache 2.0
- AlicenseAqualityNot gradedmaintenanceAn MCP server that lets AI assistants read LinkedIn data through the user's logged-in browser session, providing tools for profiles, companies, job searches, messaging, and feeds.19Apache 2.0
Related MCP Connectors
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
Live LinkedIn data for AI agents: profiles, companies, jobs, posts, email finding. No account risk.
MCP server for LeadDelta — manage LinkedIn connections and CRM data via AI assistants.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/lakome-learn-n-grow/linkedin-profile-scraper'
If you have feedback or need assistance with the MCP directory API, please join our Discord server