File tree Expand file tree Collapse file tree 1 file changed +22
-26
lines changed Expand file tree Collapse file tree 1 file changed +22
-26
lines changed Original file line number Diff line number Diff line change 1
1
startCommand :
2
2
type : stdio
3
- configSchema :
4
- type : object
5
- required :
6
- - linkedinEmail
7
- - linkedinPassword
8
- properties :
9
- linkedinEmail :
10
- type : string
11
- description : " LinkedIn email address for authentication"
12
- linkedinPassword :
13
- type : string
14
- description : " LinkedIn password for authentication"
15
- commandFunction : |-
16
- (config) => ({
17
- command: 'docker',
18
- args: [
19
- 'run', '-i', '--rm',
20
- '-e', `LINKEDIN_EMAIL=${config.linkedinEmail}`,
21
- '-e', `LINKEDIN_PASSWORD=${config.linkedinPassword}`,
22
- 'stickerdaniel/linkedin-mcp-server'
23
- ]
24
- })
25
-
26
- exampleConfig :
27
- linkedinEmail : " example.user@example.com"
28
- linkedinPassword : " yourLinkedInPassword"
3
+ configSchema :
4
+ type : object
5
+ required :
6
+ - linkedinEmail
7
+ - linkedinPassword
8
+ properties :
9
+ linkedinEmail :
10
+ type : string
11
+ description : " LinkedIn email address for authentication"
12
+ linkedinPassword :
13
+ type : string
14
+ description : " LinkedIn password for authentication"
15
+ commandFunction : |
16
+ (config) => ({
17
+ command: 'docker',
18
+ args: [
19
+ 'run', '-i', '--rm',
20
+ '-e', `LINKEDIN_EMAIL=${config.linkedinEmail}`,
21
+ '-e', `LINKEDIN_PASSWORD=${config.linkedinPassword}`,
22
+ 'stickerdaniel/linkedin-mcp-server'
23
+ ]
24
+ })
You can’t perform that action at this time.
0 commit comments