forked from stickerdaniel/linkedin-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
68 lines (68 loc) · 3.05 KB
/
manifest.json
File metadata and controls
68 lines (68 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"dxt_version": "0.1",
"name": "linkedin-mcp-server",
"display_name": "LinkedIn MCP Server",
"version": "4.2.0",
"description": "Connect Claude to LinkedIn for profiles, companies, job details, and people search",
"long_description": "# LinkedIn MCP Server\n\nConnect Claude to your LinkedIn account. Access profiles, companies, and job postings through a Docker container on your machine.\n\n## Features\n- **Profile Access**: Get detailed LinkedIn profile information including work history, education, and skills\n- **Company Profiles**: Extract comprehensive company information and details\n- **Job Details**: Retrieve job posting information from LinkedIn URLs\n- **Job Search**: Search for jobs with keywords and location filters\n- **People Search**: Search for people by keywords and location\n- **Company Posts**: Get recent posts from a company's LinkedIn feed\n- **Person Posts**: Get recent activity and posts from a person's profile\n\n## First-Time Setup\n\n### 1. Pre-pull Docker Image (Required)\nRun this command first to avoid connection timeouts:\n```\ndocker pull stickerdaniel/linkedin-mcp-server:4.2.0",
"author": {
"name": "Daniel Sticker",
"email": "daniel@sticker.name",
"url": "https://daniel.sticker.name/"
},
"homepage": "https://github.com/stickerdaniel/linkedin-mcp-server",
"documentation": "https://github.com/stickerdaniel/linkedin-mcp-server#readme",
"support": "https://github.com/stickerdaniel/linkedin-mcp-server/issues",
"license": "MIT",
"keywords": ["linkedin", "scraping", "mcp", "profiles", "companies", "jobs", "people", "search", "posts"],
"icon": "assets/icons/linkedin.svg",
"screenshots": ["assets/screenshots/screenshot.png"],
"server": {
"type": "binary",
"entry_point": "docker",
"mcp_config": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-v", "${HOME}/.linkedin-mcp:/home/pwuser/.linkedin-mcp",
"-e", "LOG_LEVEL=DEBUG",
"stickerdaniel/linkedin-mcp-server:4.2.0"
]
}
},
"tools": [
{
"name": "get_person_profile",
"description": "Get detailed information from a LinkedIn profile including work history, education, skills, connections, and recent posts"
},
{
"name": "get_company_profile",
"description": "Extract comprehensive company information and details"
},
{
"name": "get_company_posts",
"description": "Get recent posts from a company's LinkedIn feed"
},
{
"name": "get_job_details",
"description": "Retrieve specific job posting details using LinkedIn job IDs"
},
{
"name": "search_jobs",
"description": "Search for jobs with filters like keywords and location"
},
{
"name": "search_people",
"description": "Search for people on LinkedIn by keywords and location"
},
{
"name": "close_session",
"description": "Properly close browser session and clean up resources"
}
],
"user_config": {},
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": ["darwin", "linux", "win32"]
}
}