linkedin-profile-scraper
Lakome LinkedIn MCP Server
AIエージェントに、Lakome API を利用したリアルタイムのLinkedInプロフィール抽出機能を提供する、軽量なModel Context Protocol(MCP)サーバーです。
このサーバーは、LLMクライアント(Claude Desktop、Cursor、Cline、Roo Code、カスタムAIエージェントなど)と、LakomeのLinkedInインテリジェンスエンドポイントとの間のブリッジとして機能します。
⚡ 機能
標準stdioトランスポート: 標準的なMCPクライアントと互換性があります。
単一の専用ツール:
extract_linkedin_profileを公開し、構造化された完全なプロフィール情報(職歴、学歴、スキル、ヘッドライン、サマリー、連絡先情報など)を抽出します。バッチ処理: 単一または複数のLinkedInプロフィールURLを1回のリクエストで照会できます。
エラーハンドリング: 認証キーを検証し、整形されたエラーフィードバックを返します。
Related MCP server: SalesTouch
📋 前提条件
Node.js v18.0.0 以上
Lakome APIキー(mcp.lakome.in で取得できます)
🔑 LAKOME_API_KEY の設定
サーバーがLakome APIエンドポイントへのリクエストを認証するには、LAKOME_API_KEY が必要です。
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
1つ以上の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.jsMCP 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