@ldraney/mcp-linkedin 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/manifest.json +63 -0
- package/package.json +1 -1
package/manifest.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": "0.2",
|
|
3
|
+
"name": "@ldraney/mcp-linkedin",
|
|
4
|
+
"version": "0.1.2",
|
|
5
|
+
"description": "MCP server for managing LinkedIn posts - create text, image, video, document, poll, and multi-image posts. Schedule posts, add comments and reactions.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Lucas Draney"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/intelligent-staffing-systems/mcp-linkedin.git"
|
|
12
|
+
},
|
|
13
|
+
"server": {
|
|
14
|
+
"type": "node",
|
|
15
|
+
"entry_point": "src/index.js",
|
|
16
|
+
"mcp_config": {
|
|
17
|
+
"command": "node",
|
|
18
|
+
"args": [
|
|
19
|
+
"${__dirname}/src/index.js"
|
|
20
|
+
],
|
|
21
|
+
"env": {
|
|
22
|
+
"LINKEDIN_CLIENT_ID": "${user_config.linkedin_client_id}",
|
|
23
|
+
"LINKEDIN_CLIENT_SECRET": "${user_config.linkedin_client_secret}",
|
|
24
|
+
"LINKEDIN_REDIRECT_URI": "${user_config.linkedin_redirect_uri}",
|
|
25
|
+
"LINKEDIN_PERSON_ID": "${user_config.linkedin_person_id}",
|
|
26
|
+
"LINKEDIN_ACCESS_TOKEN": "${user_config.linkedin_access_token}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"user_config": {
|
|
31
|
+
"linkedin_client_id": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"title": "Client ID (optional)",
|
|
34
|
+
"description": "LinkedIn OAuth app client ID - leave blank to set up via chat",
|
|
35
|
+
"required": false
|
|
36
|
+
},
|
|
37
|
+
"linkedin_client_secret": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"title": "Client Secret (optional)",
|
|
40
|
+
"description": "LinkedIn OAuth app client secret - leave blank to set up via chat",
|
|
41
|
+
"required": false
|
|
42
|
+
},
|
|
43
|
+
"linkedin_redirect_uri": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"title": "Redirect URI (optional)",
|
|
46
|
+
"description": "OAuth callback URL - defaults to https://localhost:8888/callback",
|
|
47
|
+
"required": false
|
|
48
|
+
},
|
|
49
|
+
"linkedin_person_id": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"title": "Person ID (optional)",
|
|
52
|
+
"description": "Your LinkedIn person ID - obtained automatically during OAuth",
|
|
53
|
+
"required": false
|
|
54
|
+
},
|
|
55
|
+
"linkedin_access_token": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"title": "Access Token (optional)",
|
|
58
|
+
"description": "OAuth access token - obtained via linkedin_exchange_code tool",
|
|
59
|
+
"required": false
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"license": "MIT"
|
|
63
|
+
}
|