linkedin-profile-scraper
Lakome LinkedIn MCP Server
Ein leichtgewichtiger Model Context Protocol (MCP)-Server, der KI-Agenten die Echtzeit-Extraktion von LinkedIn-Profilen ermöglicht, unterstützt durch die Lakome API.
Dieser Server dient als Brücke zwischen LLM-Clients (wie Claude Desktop, Cursor, Cline, Roo und benutzerdefinierten KI-Tools) und dem LinkedIn-Intelligence-Endpunkt von Lakome.
⚡ Funktionen
Leichtgewichtiger stdio-Transport: Kompatibel mit jedem standardkonformen MCP-Client.
Ein einziges spezialisiertes Tool: Stellt
extract_linkedin_profilebereit, um vollständige strukturierte Profildetails zu extrahieren (Berufserfahrung, Ausbildung, Fähigkeiten, Überschrift, Zusammenfassung, Kontaktinformationen, Kontaktinformatien und mehr).Stapelverarbeitung: Unterstützt das Abfragen einer einzelnen oder mehrerer LinkedIn-Profil-URLs in einer einzigen Anfrage.
Fehlerbehandlung: Validiert Authentifizierungsschlüssel und gibt aussagekräftige Fehlermeldungen zurück.
Related MCP server: SalesTouch
📋 Voraussetzungen
Node.js v18.0.0 oder höher
Einen Lakome API Key (Holen Sie sich Ihren unter mcp.lakome.in)
🔑 Einrichten Ihres LAKOME_API_KEY
Der Server benötigt Ihren LAKOME_API_KEY, um sich über den Lakome-API-Endpunkt zu authentifizieren.
Auf macOS / Linux
export LAKOME_API_KEY="your_actual_lakome_api_key_here"Unter Windows (PowerShell)
$env:LAKOME_API_KEY="your_actual_lakome_api_key_here"Unter Windows (Eingabeaufforderung)
set LAKOME_API_KEY=your_actual_lakome_api_key_here🚀 Installation & Client-Konfiguration
1. Claude Desktop einrichten
Fügen Sie die Serverkonfiguration zu Ihrer claude_desktop_config.json hinzu:
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"
}
}
}
}Hinweis für Windows-Benutzer: Ersetzen Sie
/absolute/path/to/mcp-server/index.jsdurch Ihren absoluten Windows-Pfad (z. B.D:\extensions and projects\lakome API project\mcp-server\index.js).
2. Cursor IDE einrichten
Fügen Sie das Folgende zu den MCP-Einstellungen Ihres Projekts (.cursor/mcp.json) oder den globalen MCP-Einstellungen hinzu:
{
"mcpServers": {
"lakome-linkedin": {
"command": "node",
"args": [
"./mcp-server/index.js"
],
"env": {
"LAKOME_API_KEY": "your_actual_lakome_api_key_here"
}
}
}
}3. Smithery.ai CLI
Sie können den Server automatisch über [Smithery](https://smithery.ai/installieren und ausführen):
npx -y @smithery/cli install @lakome/linkedin-mcp --client claude🔧 Tool-Referenz
extract_linkedin_profile
Extrahiert umfassende, strukturierte Profil- und Analyse-Daten aus einer oder mehreren LinkedIn-Profil-URLs.
Parameter
Name | Typ | Erforderlich | Beschreibung |
|
| Ja | Array von LinkedIn-Profil-URLs, die extrahiert werden sollen (z. B. |
Beispielaufruf
{
"profileUrls": [
"https://www.linkedin.com/in/williamhgates",
"https://www.linkedin.com/in/satyanadella"
]
}Beispielantwort
[
{
"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"
}
]🧪 Lokale Tests & Entwicklung
Abhängigkeiten installieren:
cd mcp-server npm installServer lokal ausführen:
LAKOME_API_KEY="your_api_key" node index.jsMit dem MCP Inspector prüfen:
npx @modelcontextprotocol/inspector node index.js
📄 Lizenz
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