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
97 lines (97 loc) · 3.93 KB
/
manifest.json
File metadata and controls
97 lines (97 loc) · 3.93 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"dxt_version": "0.1",
"name": "linkedin-mcp-server",
"display_name": "LinkedIn MCP Server",
"version": "4.4.1",
"description": "Connect Claude to LinkedIn for profiles, companies, job details, people search, and messaging",
"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.4.1",
"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", "messaging"],
"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.4.1"
]
}
},
"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": "get_inbox",
"description": "List recent conversations from the LinkedIn messaging inbox"
},
{
"name": "get_conversation",
"description": "Read a specific messaging conversation by username or thread ID"
},
{
"name": "search_conversations",
"description": "Search messages by keyword"
},
{
"name": "send_message",
"description": "Send a message to a LinkedIn user"
},
{
"name": "close_session",
"description": "Properly close browser session and clean up resources"
}
],
"user_config": {
"AUTH": {
"description": "Set to 'oauth' to enable OAuth 2.1 authentication for remote deployments",
"required": false
},
"OAUTH_BASE_URL": {
"description": "Public URL of the server (required when AUTH=oauth)",
"required": false
},
"OAUTH_PASSWORD": {
"description": "Password for the OAuth login page (required when AUTH=oauth)",
"required": false
}
},
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": ["darwin", "linux", "win32"]
}
}