@linkedapi/mcp 0.3.11
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/.dockerignore +11 -0
- package/.github/workflows/merge-main.yaml +136 -0
- package/.github/workflows/pr-main.yaml +42 -0
- package/.husky/pre-commit +5 -0
- package/.prettierrc.js +21 -0
- package/.vscode/launch.json +19 -0
- package/Dockerfile +39 -0
- package/LICENSE +21 -0
- package/README.md +17 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +189 -0
- package/dist/index.js.map +1 -0
- package/dist/linked-api-server.d.ts +13 -0
- package/dist/linked-api-server.d.ts.map +1 -0
- package/dist/linked-api-server.js +127 -0
- package/dist/linked-api-server.js.map +1 -0
- package/dist/linked-api-tools.d.ts +8 -0
- package/dist/linked-api-tools.d.ts.map +1 -0
- package/dist/linked-api-tools.js +72 -0
- package/dist/linked-api-tools.js.map +1 -0
- package/dist/prompts/index.d.ts +10 -0
- package/dist/prompts/index.d.ts.map +1 -0
- package/dist/prompts/index.js +190 -0
- package/dist/prompts/index.js.map +1 -0
- package/dist/tools/check-connection-status.d.ts +13 -0
- package/dist/tools/check-connection-status.d.ts.map +1 -0
- package/dist/tools/check-connection-status.js +31 -0
- package/dist/tools/check-connection-status.js.map +1 -0
- package/dist/tools/comment-on-post.d.ts +15 -0
- package/dist/tools/comment-on-post.d.ts.map +1 -0
- package/dist/tools/comment-on-post.js +41 -0
- package/dist/tools/comment-on-post.js.map +1 -0
- package/dist/tools/create-post.d.ts +23 -0
- package/dist/tools/create-post.d.ts.map +1 -0
- package/dist/tools/create-post.js +67 -0
- package/dist/tools/create-post.js.map +1 -0
- package/dist/tools/execute-custom-workflow.d.ts +13 -0
- package/dist/tools/execute-custom-workflow.d.ts.map +1 -0
- package/dist/tools/execute-custom-workflow.js +26 -0
- package/dist/tools/execute-custom-workflow.js.map +1 -0
- package/dist/tools/fetch-company.d.ts +34 -0
- package/dist/tools/fetch-company.d.ts.map +1 -0
- package/dist/tools/fetch-company.js +139 -0
- package/dist/tools/fetch-company.js.map +1 -0
- package/dist/tools/fetch-person.d.ts +32 -0
- package/dist/tools/fetch-person.d.ts.map +1 -0
- package/dist/tools/fetch-person.js +129 -0
- package/dist/tools/fetch-person.js.map +1 -0
- package/dist/tools/fetch-post.d.ts +26 -0
- package/dist/tools/fetch-post.d.ts.map +1 -0
- package/dist/tools/fetch-post.js +82 -0
- package/dist/tools/fetch-post.js.map +1 -0
- package/dist/tools/get-api-usage-stats.d.ts +19 -0
- package/dist/tools/get-api-usage-stats.d.ts.map +1 -0
- package/dist/tools/get-api-usage-stats.js +40 -0
- package/dist/tools/get-api-usage-stats.js.map +1 -0
- package/dist/tools/get-conversation.d.ts +26 -0
- package/dist/tools/get-conversation.d.ts.map +1 -0
- package/dist/tools/get-conversation.js +59 -0
- package/dist/tools/get-conversation.js.map +1 -0
- package/dist/tools/get-workflow-result.d.ts +50 -0
- package/dist/tools/get-workflow-result.d.ts.map +1 -0
- package/dist/tools/get-workflow-result.js +46 -0
- package/dist/tools/get-workflow-result.js.map +1 -0
- package/dist/tools/nv-fetch-company.d.ts +30 -0
- package/dist/tools/nv-fetch-company.d.ts.map +1 -0
- package/dist/tools/nv-fetch-company.js +124 -0
- package/dist/tools/nv-fetch-company.js.map +1 -0
- package/dist/tools/nv-fetch-person.d.ts +13 -0
- package/dist/tools/nv-fetch-person.d.ts.map +1 -0
- package/dist/tools/nv-fetch-person.js +31 -0
- package/dist/tools/nv-fetch-person.js.map +1 -0
- package/dist/tools/nv-get-conversation.d.ts +26 -0
- package/dist/tools/nv-get-conversation.d.ts.map +1 -0
- package/dist/tools/nv-get-conversation.js +59 -0
- package/dist/tools/nv-get-conversation.js.map +1 -0
- package/dist/tools/nv-search-companies.d.ts +32 -0
- package/dist/tools/nv-search-companies.d.ts.map +1 -0
- package/dist/tools/nv-search-companies.js +106 -0
- package/dist/tools/nv-search-companies.js.map +1 -0
- package/dist/tools/nv-search-people.d.ts +25 -0
- package/dist/tools/nv-search-people.d.ts.map +1 -0
- package/dist/tools/nv-search-people.js +99 -0
- package/dist/tools/nv-search-people.js.map +1 -0
- package/dist/tools/nv-send-message.d.ts +15 -0
- package/dist/tools/nv-send-message.d.ts.map +1 -0
- package/dist/tools/nv-send-message.js +41 -0
- package/dist/tools/nv-send-message.js.map +1 -0
- package/dist/tools/nv-sync-conversation.d.ts +13 -0
- package/dist/tools/nv-sync-conversation.d.ts.map +1 -0
- package/dist/tools/nv-sync-conversation.js +31 -0
- package/dist/tools/nv-sync-conversation.js.map +1 -0
- package/dist/tools/react-to-post.d.ts +22 -0
- package/dist/tools/react-to-post.d.ts.map +1 -0
- package/dist/tools/react-to-post.js +42 -0
- package/dist/tools/react-to-post.js.map +1 -0
- package/dist/tools/remove-connection.d.ts +13 -0
- package/dist/tools/remove-connection.d.ts.map +1 -0
- package/dist/tools/remove-connection.js +31 -0
- package/dist/tools/remove-connection.js.map +1 -0
- package/dist/tools/retrieve-connections.d.ts +24 -0
- package/dist/tools/retrieve-connections.d.ts.map +1 -0
- package/dist/tools/retrieve-connections.js +90 -0
- package/dist/tools/retrieve-connections.js.map +1 -0
- package/dist/tools/retrieve-pending-requests.d.ts +10 -0
- package/dist/tools/retrieve-pending-requests.d.ts.map +1 -0
- package/dist/tools/retrieve-pending-requests.js +23 -0
- package/dist/tools/retrieve-pending-requests.js.map +1 -0
- package/dist/tools/retrieve-performance.d.ts +10 -0
- package/dist/tools/retrieve-performance.d.ts.map +1 -0
- package/dist/tools/retrieve-performance.js +23 -0
- package/dist/tools/retrieve-performance.js.map +1 -0
- package/dist/tools/retrieve-ssi.d.ts +10 -0
- package/dist/tools/retrieve-ssi.d.ts.map +1 -0
- package/dist/tools/retrieve-ssi.js +23 -0
- package/dist/tools/retrieve-ssi.js.map +1 -0
- package/dist/tools/search-companies.d.ts +28 -0
- package/dist/tools/search-companies.d.ts.map +1 -0
- package/dist/tools/search-companies.js +86 -0
- package/dist/tools/search-companies.js.map +1 -0
- package/dist/tools/search-people.d.ts +24 -0
- package/dist/tools/search-people.d.ts.map +1 -0
- package/dist/tools/search-people.js +90 -0
- package/dist/tools/search-people.js.map +1 -0
- package/dist/tools/send-connection-request.d.ts +15 -0
- package/dist/tools/send-connection-request.d.ts.map +1 -0
- package/dist/tools/send-connection-request.js +41 -0
- package/dist/tools/send-connection-request.js.map +1 -0
- package/dist/tools/send-message.d.ts +14 -0
- package/dist/tools/send-message.d.ts.map +1 -0
- package/dist/tools/send-message.js +36 -0
- package/dist/tools/send-message.js.map +1 -0
- package/dist/tools/sync-conversation.d.ts +13 -0
- package/dist/tools/sync-conversation.d.ts.map +1 -0
- package/dist/tools/sync-conversation.js +31 -0
- package/dist/tools/sync-conversation.js.map +1 -0
- package/dist/tools/withdraw-connection-request.d.ts +14 -0
- package/dist/tools/withdraw-connection-request.d.ts.map +1 -0
- package/dist/tools/withdraw-connection-request.js +36 -0
- package/dist/tools/withdraw-connection-request.js.map +1 -0
- package/dist/utils/define-request-timeout.d.ts +2 -0
- package/dist/utils/define-request-timeout.d.ts.map +1 -0
- package/dist/utils/define-request-timeout.js +20 -0
- package/dist/utils/define-request-timeout.js.map +1 -0
- package/dist/utils/execute-with-progress.d.ts +8 -0
- package/dist/utils/execute-with-progress.d.ts.map +1 -0
- package/dist/utils/execute-with-progress.js +75 -0
- package/dist/utils/execute-with-progress.js.map +1 -0
- package/dist/utils/handle-linked-api-error.d.ts +3 -0
- package/dist/utils/handle-linked-api-error.d.ts.map +1 -0
- package/dist/utils/handle-linked-api-error.js +29 -0
- package/dist/utils/handle-linked-api-error.js.map +1 -0
- package/dist/utils/json-http-transport.d.ts +26 -0
- package/dist/utils/json-http-transport.d.ts.map +1 -0
- package/dist/utils/json-http-transport.js +265 -0
- package/dist/utils/json-http-transport.js.map +1 -0
- package/dist/utils/linked-api-tool.d.ts +28 -0
- package/dist/utils/linked-api-tool.d.ts.map +1 -0
- package/dist/utils/linked-api-tool.js +25 -0
- package/dist/utils/linked-api-tool.js.map +1 -0
- package/dist/utils/logger.d.ts +8 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +81 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/types.d.ts +16 -0
- package/dist/utils/types.d.ts.map +1 -0
- package/dist/utils/types.js +3 -0
- package/dist/utils/types.js.map +1 -0
- package/eslint.config.js +118 -0
- package/package.json +62 -0
- package/src/index.ts +212 -0
- package/src/linked-api-server.ts +159 -0
- package/src/linked-api-tools.ts +72 -0
- package/src/prompts/index.ts +190 -0
- package/src/tools/check-connection-status.ts +39 -0
- package/src/tools/comment-on-post.ts +42 -0
- package/src/tools/create-post.ts +71 -0
- package/src/tools/execute-custom-workflow.ts +28 -0
- package/src/tools/fetch-company.ts +154 -0
- package/src/tools/fetch-person.ts +145 -0
- package/src/tools/fetch-post.ts +90 -0
- package/src/tools/get-api-usage-stats.ts +48 -0
- package/src/tools/get-conversation.ts +76 -0
- package/src/tools/get-workflow-result.ts +62 -0
- package/src/tools/nv-fetch-company.ts +136 -0
- package/src/tools/nv-fetch-person.ts +31 -0
- package/src/tools/nv-get-conversation.ts +76 -0
- package/src/tools/nv-search-companies.ts +114 -0
- package/src/tools/nv-search-people.ts +107 -0
- package/src/tools/nv-send-message.ts +42 -0
- package/src/tools/nv-sync-conversation.ts +32 -0
- package/src/tools/react-to-post.ts +44 -0
- package/src/tools/remove-connection.ts +32 -0
- package/src/tools/retrieve-connections.ts +105 -0
- package/src/tools/retrieve-pending-requests.ts +23 -0
- package/src/tools/retrieve-performance.ts +23 -0
- package/src/tools/retrieve-ssi.ts +23 -0
- package/src/tools/search-companies.ts +93 -0
- package/src/tools/search-people.ts +97 -0
- package/src/tools/send-connection-request.ts +46 -0
- package/src/tools/send-message.ts +36 -0
- package/src/tools/sync-conversation.ts +32 -0
- package/src/tools/withdraw-connection-request.ts +41 -0
- package/src/utils/define-request-timeout.ts +17 -0
- package/src/utils/execute-with-progress.ts +93 -0
- package/src/utils/handle-linked-api-error.ts +27 -0
- package/src/utils/json-http-transport.ts +325 -0
- package/src/utils/linked-api-tool.ts +58 -0
- package/src/utils/logger.ts +84 -0
- package/src/utils/types.ts +17 -0
- package/tsconfig.json +36 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NvSearchPeopleTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class NvSearchPeopleTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'nv_search_people';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.nvSearchPeople;
|
|
10
|
+
schema = zod_1.z.object({
|
|
11
|
+
term: zod_1.z.string().optional(),
|
|
12
|
+
limit: zod_1.z.number().min(1).max(2500).optional(),
|
|
13
|
+
filter: zod_1.z
|
|
14
|
+
.object({
|
|
15
|
+
firstName: zod_1.z.string().optional(),
|
|
16
|
+
lastName: zod_1.z.string().optional(),
|
|
17
|
+
position: zod_1.z.string().optional(),
|
|
18
|
+
locations: zod_1.z.array(zod_1.z.string()).optional(),
|
|
19
|
+
industries: zod_1.z.array(zod_1.z.string()).optional(),
|
|
20
|
+
currentCompanies: zod_1.z.array(zod_1.z.string()).optional(),
|
|
21
|
+
previousCompanies: zod_1.z.array(zod_1.z.string()).optional(),
|
|
22
|
+
schools: zod_1.z.array(zod_1.z.string()).optional(),
|
|
23
|
+
yearsOfExperiences: zod_1.z.array(zod_1.z.string()).optional(),
|
|
24
|
+
})
|
|
25
|
+
.optional(),
|
|
26
|
+
});
|
|
27
|
+
getTool() {
|
|
28
|
+
return {
|
|
29
|
+
name: this.name,
|
|
30
|
+
description: 'Allows you to search people in Sales Navigator applying various filtering criteria. (nv.searchPeople action).',
|
|
31
|
+
inputSchema: {
|
|
32
|
+
type: 'object',
|
|
33
|
+
properties: {
|
|
34
|
+
term: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
description: 'Optional. Keyword or phrase to search.',
|
|
37
|
+
},
|
|
38
|
+
limit: {
|
|
39
|
+
type: 'number',
|
|
40
|
+
description: 'Optional. Number of search results to return. Defaults to 25, with a maximum value of 2500.',
|
|
41
|
+
},
|
|
42
|
+
filter: {
|
|
43
|
+
type: 'object',
|
|
44
|
+
description: 'Optional. Object that specifies filtering criteria for people. When multiple filter fields are specified, they are combined using AND logic.',
|
|
45
|
+
properties: {
|
|
46
|
+
firstName: {
|
|
47
|
+
type: 'string',
|
|
48
|
+
description: 'Optional. First name of person.',
|
|
49
|
+
},
|
|
50
|
+
lastName: {
|
|
51
|
+
type: 'string',
|
|
52
|
+
description: 'Optional. Last name of person.',
|
|
53
|
+
},
|
|
54
|
+
position: {
|
|
55
|
+
type: 'string',
|
|
56
|
+
description: 'Optional. Job position of person.',
|
|
57
|
+
},
|
|
58
|
+
locations: {
|
|
59
|
+
type: 'array',
|
|
60
|
+
description: 'Optional. Array of free-form strings representing locations. Matches if person is located in any of the listed locations.',
|
|
61
|
+
items: { type: 'string' },
|
|
62
|
+
},
|
|
63
|
+
industries: {
|
|
64
|
+
type: 'array',
|
|
65
|
+
description: 'Optional. Array of enums representing industries. Matches if person works in any of the listed industries. Takes specific values available in the LinkedIn interface.',
|
|
66
|
+
items: { type: 'string' },
|
|
67
|
+
},
|
|
68
|
+
currentCompanies: {
|
|
69
|
+
type: 'array',
|
|
70
|
+
description: 'Optional. Array of company names. Matches if person currently works at any of the listed companies.',
|
|
71
|
+
items: { type: 'string' },
|
|
72
|
+
},
|
|
73
|
+
previousCompanies: {
|
|
74
|
+
type: 'array',
|
|
75
|
+
description: 'Optional. Array of company names. Matches if person previously worked at any of the listed companies.',
|
|
76
|
+
items: { type: 'string' },
|
|
77
|
+
},
|
|
78
|
+
schools: {
|
|
79
|
+
type: 'array',
|
|
80
|
+
description: 'Optional. Array of institution names. Matches if person currently attends or previously attended any of the listed institutions.',
|
|
81
|
+
items: { type: 'string' },
|
|
82
|
+
},
|
|
83
|
+
yearsOfExperiences: {
|
|
84
|
+
type: 'array',
|
|
85
|
+
description: "Optional. Array of enums representing professional experience. Matches if person's experience falls within any of the listed ranges.",
|
|
86
|
+
items: {
|
|
87
|
+
type: 'string',
|
|
88
|
+
enum: ['lessThanOne', 'oneToTwo', 'threeToFive', 'sixToTen', 'moreThanTen'],
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
exports.NvSearchPeopleTool = NvSearchPeopleTool;
|
|
99
|
+
//# sourceMappingURL=nv-search-people.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nv-search-people.js","sourceRoot":"","sources":["../../src/tools/nv-search-people.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TNvSendMessageParams } from '@linkedapi/node';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
5
|
+
export declare class NvSendMessageTool extends OperationTool<TNvSendMessageParams, unknown> {
|
|
6
|
+
readonly name = "nv_send_message";
|
|
7
|
+
readonly operationName: "nvSendMessage";
|
|
8
|
+
protected readonly schema: z.ZodObject<{
|
|
9
|
+
personUrl: z.ZodString;
|
|
10
|
+
text: z.ZodString;
|
|
11
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
getTool(): Tool;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=nv-send-message.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nv-send-message.d.ts","sourceRoot":"","sources":["../../src/tools/nv-send-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,iBAAkB,SAAQ,aAAa,CAAC,oBAAoB,EAAE,OAAO,CAAC;IACjF,SAAyB,IAAI,qBAAqB;IAClD,SAAyB,aAAa,kBAAgC;IACtE,mBAA4B,MAAM;;;;sBAI/B;IAEa,OAAO,IAAI,IAAI;CA0BhC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NvSendMessageTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class NvSendMessageTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'nv_send_message';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.nvSendMessage;
|
|
10
|
+
schema = zod_1.z.object({
|
|
11
|
+
personUrl: zod_1.z.string(),
|
|
12
|
+
text: zod_1.z.string().min(1),
|
|
13
|
+
subject: zod_1.z.string().optional(),
|
|
14
|
+
});
|
|
15
|
+
getTool() {
|
|
16
|
+
return {
|
|
17
|
+
name: this.name,
|
|
18
|
+
description: 'Allows you to send a message to a person in Sales Navigator (nv.sendMessage action)',
|
|
19
|
+
inputSchema: {
|
|
20
|
+
type: 'object',
|
|
21
|
+
properties: {
|
|
22
|
+
personUrl: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: "LinkedIn URL of the person you want to send a message to (e.g., 'https://www.linkedin.com/in/john-doe')",
|
|
25
|
+
},
|
|
26
|
+
text: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'The message text, must be up to 1900 characters.',
|
|
29
|
+
},
|
|
30
|
+
subject: {
|
|
31
|
+
type: 'string',
|
|
32
|
+
description: 'Subject line, must be up to 80 characters.',
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
required: ['personUrl', 'text', 'subject'],
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.NvSendMessageTool = NvSendMessageTool;
|
|
41
|
+
//# sourceMappingURL=nv-send-message.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nv-send-message.js","sourceRoot":"","sources":["../../src/tools/nv-send-message.ts"],"names":[],"mappings":";;;AAAA,0CAAuE;AAEvE,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,iBAAkB,SAAQ,kCAA4C;IACxD,IAAI,GAAG,iBAAiB,CAAC;IACzB,aAAa,GAAG,qBAAc,CAAC,aAAa,CAAC;IAC1C,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;QAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;QACrB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC/B,CAAC,CAAC;IAEa,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,qFAAqF;YACvF,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE;oBACV,SAAS,EAAE;wBACT,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,yGAAyG;qBAC5G;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,kDAAkD;qBAChE;oBACD,OAAO,EAAE;wBACP,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,4CAA4C;qBAC1D;iBACF;gBACD,QAAQ,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,SAAS,CAAC;aAC3C;SACF,CAAC;IACJ,CAAC;CACF;AAnCD,8CAmCC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TNvSyncConversationParams } from '@linkedapi/node';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
5
|
+
export declare class NvSyncConversationTool extends OperationTool<TNvSyncConversationParams, unknown> {
|
|
6
|
+
readonly name = "nv_sync_conversation";
|
|
7
|
+
readonly operationName: "nvSyncConversation";
|
|
8
|
+
protected readonly schema: z.ZodObject<{
|
|
9
|
+
personUrl: z.ZodString;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
getTool(): Tool;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=nv-sync-conversation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nv-sync-conversation.d.ts","sourceRoot":"","sources":["../../src/tools/nv-sync-conversation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,yBAAyB,EAAE,MAAM,iBAAiB,CAAC;AAC5E,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,sBAAuB,SAAQ,aAAa,CAAC,yBAAyB,EAAE,OAAO,CAAC;IAC3F,SAAyB,IAAI,0BAA0B;IACvD,SAAyB,aAAa,uBAAqC;IAC3E,mBAA4B,MAAM;;sBAE/B;IAEa,OAAO,IAAI,IAAI;CAkBhC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NvSyncConversationTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class NvSyncConversationTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'nv_sync_conversation';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.nvSyncConversation;
|
|
10
|
+
schema = zod_1.z.object({
|
|
11
|
+
personUrl: zod_1.z.string(),
|
|
12
|
+
});
|
|
13
|
+
getTool() {
|
|
14
|
+
return {
|
|
15
|
+
name: this.name,
|
|
16
|
+
description: 'Allows you to sync a conversation in Sales Navigator so you can start polling it. (nv.syncConversation action).',
|
|
17
|
+
inputSchema: {
|
|
18
|
+
type: 'object',
|
|
19
|
+
properties: {
|
|
20
|
+
personUrl: {
|
|
21
|
+
type: 'string',
|
|
22
|
+
description: "The LinkedIn URL of the person whose Sales Navigator conversation to sync (e.g., 'https://www.linkedin.com/in/john-doe')",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
required: ['personUrl'],
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.NvSyncConversationTool = NvSyncConversationTool;
|
|
31
|
+
//# sourceMappingURL=nv-sync-conversation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nv-sync-conversation.js","sourceRoot":"","sources":["../../src/tools/nv-sync-conversation.ts"],"names":[],"mappings":";;;AAAA,0CAA4E;AAE5E,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,sBAAuB,SAAQ,kCAAiD;IAClE,IAAI,GAAG,sBAAsB,CAAC;IAC9B,aAAa,GAAG,qBAAc,CAAC,kBAAkB,CAAC;IAC/C,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;QAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;KACtB,CAAC,CAAC;IAEa,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,iHAAiH;YACnH,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE;oBACV,SAAS,EAAE;wBACT,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,0HAA0H;qBAC7H;iBACF;gBACD,QAAQ,EAAE,CAAC,WAAW,CAAC;aACxB;SACF,CAAC;IACJ,CAAC;CACF;AAzBD,wDAyBC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { TReactToPostParams } from '@linkedapi/node';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
5
|
+
export declare class ReactToPostTool extends OperationTool<TReactToPostParams, unknown> {
|
|
6
|
+
readonly name = "react_to_post";
|
|
7
|
+
readonly operationName: "reactToPost";
|
|
8
|
+
protected readonly schema: z.ZodObject<{
|
|
9
|
+
postUrl: z.ZodString;
|
|
10
|
+
type: z.ZodUnion<[z.ZodEnum<{
|
|
11
|
+
like: "like";
|
|
12
|
+
love: "love";
|
|
13
|
+
celebrate: "celebrate";
|
|
14
|
+
support: "support";
|
|
15
|
+
funny: "funny";
|
|
16
|
+
insightful: "insightful";
|
|
17
|
+
}>, z.ZodString]>;
|
|
18
|
+
companyUrl: z.ZodOptional<z.ZodString>;
|
|
19
|
+
}, z.core.$strip>;
|
|
20
|
+
getTool(): Tool;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=react-to-post.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-to-post.d.ts","sourceRoot":"","sources":["../../src/tools/react-to-post.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrE,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,eAAgB,SAAQ,aAAa,CAAC,kBAAkB,EAAE,OAAO,CAAC;IAC7E,SAAyB,IAAI,mBAAmB;IAChD,SAAyB,aAAa,gBAA8B;IACpE,mBAA4B,MAAM;;;;;;;;;;;sBAI/B;IAEa,OAAO,IAAI,IAAI;CA4BhC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ReactToPostTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class ReactToPostTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'react_to_post';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.reactToPost;
|
|
10
|
+
schema = zod_1.z.object({
|
|
11
|
+
postUrl: zod_1.z.string(),
|
|
12
|
+
type: zod_1.z.enum(['like', 'love', 'celebrate', 'support', 'funny', 'insightful']).or(zod_1.z.string()),
|
|
13
|
+
companyUrl: zod_1.z.string().optional(),
|
|
14
|
+
});
|
|
15
|
+
getTool() {
|
|
16
|
+
return {
|
|
17
|
+
name: this.name,
|
|
18
|
+
description: 'Allows you to react to a post using any available reaction type (st.reactToPost action).',
|
|
19
|
+
inputSchema: {
|
|
20
|
+
type: 'object',
|
|
21
|
+
properties: {
|
|
22
|
+
postUrl: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: "LinkedIn URL of the post to react. (e.g., 'https://www.linkedin.com/posts/username_activity-id')",
|
|
25
|
+
},
|
|
26
|
+
type: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'Enum describing the reaction type.',
|
|
29
|
+
enum: ['like', 'love', 'support', 'celebrate', 'insightful', 'funny'],
|
|
30
|
+
},
|
|
31
|
+
companyUrl: {
|
|
32
|
+
type: 'string',
|
|
33
|
+
description: "LinkedIn company page URL. If specified, the reaction will be added on behalf of the company. (e.g., 'https://www.linkedin.com/company/acme-corp')",
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
required: ['postUrl', 'type'],
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.ReactToPostTool = ReactToPostTool;
|
|
42
|
+
//# sourceMappingURL=react-to-post.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-to-post.js","sourceRoot":"","sources":["../../src/tools/react-to-post.ts"],"names":[],"mappings":";;;AAAA,0CAAqE;AAErE,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,eAAgB,SAAQ,kCAA0C;IACpD,IAAI,GAAG,eAAe,CAAC;IACvB,aAAa,GAAG,qBAAc,CAAC,WAAW,CAAC;IACxC,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;QAC5C,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;QACnB,IAAI,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,SAAS,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;QAC5F,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAClC,CAAC,CAAC;IAEa,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,0FAA0F;YAC5F,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE;oBACV,OAAO,EAAE;wBACP,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,kGAAkG;qBACrG;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,oCAAoC;wBACjD,IAAI,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,OAAO,CAAC;qBACtE;oBACD,UAAU,EAAE;wBACV,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,oJAAoJ;qBACvJ;iBACF;gBACD,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,CAAC;aAC9B;SACF,CAAC;IACJ,CAAC;CACF;AArCD,0CAqCC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TRemoveConnectionParams } from '@linkedapi/node';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
5
|
+
export declare class RemoveConnectionTool extends OperationTool<TRemoveConnectionParams, unknown> {
|
|
6
|
+
readonly name = "remove_connection";
|
|
7
|
+
readonly operationName: "removeConnection";
|
|
8
|
+
protected readonly schema: z.ZodObject<{
|
|
9
|
+
personUrl: z.ZodString;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
getTool(): Tool;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=remove-connection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove-connection.d.ts","sourceRoot":"","sources":["../../src/tools/remove-connection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAC1E,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,oBAAqB,SAAQ,aAAa,CAAC,uBAAuB,EAAE,OAAO,CAAC;IACvF,SAAyB,IAAI,uBAAuB;IACpD,SAAyB,aAAa,qBAAmC;IACzE,mBAA4B,MAAM;;sBAE/B;IAEa,OAAO,IAAI,IAAI;CAkBhC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RemoveConnectionTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class RemoveConnectionTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'remove_connection';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.removeConnection;
|
|
10
|
+
schema = zod_1.z.object({
|
|
11
|
+
personUrl: zod_1.z.string(),
|
|
12
|
+
});
|
|
13
|
+
getTool() {
|
|
14
|
+
return {
|
|
15
|
+
name: this.name,
|
|
16
|
+
description: 'Allows you to remove a person from your connections (st.removeConnection action).',
|
|
17
|
+
inputSchema: {
|
|
18
|
+
type: 'object',
|
|
19
|
+
properties: {
|
|
20
|
+
personUrl: {
|
|
21
|
+
type: 'string',
|
|
22
|
+
description: "Public or hashed LinkedIn URL of the person you want to remove from your connections. (e.g., 'https://www.linkedin.com/in/john-doe')",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
required: ['personUrl'],
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.RemoveConnectionTool = RemoveConnectionTool;
|
|
31
|
+
//# sourceMappingURL=remove-connection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove-connection.js","sourceRoot":"","sources":["../../src/tools/remove-connection.ts"],"names":[],"mappings":";;;AAAA,0CAA0E;AAE1E,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,oBAAqB,SAAQ,kCAA+C;IAC9D,IAAI,GAAG,mBAAmB,CAAC;IAC3B,aAAa,GAAG,qBAAc,CAAC,gBAAgB,CAAC;IAC7C,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;QAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;KACtB,CAAC,CAAC;IAEa,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,mFAAmF;YACrF,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE;oBACV,SAAS,EAAE;wBACT,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,sIAAsI;qBACzI;iBACF;gBACD,QAAQ,EAAE,CAAC,WAAW,CAAC;aACxB;SACF,CAAC;IACJ,CAAC;CACF;AAzBD,oDAyBC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { TRetrieveConnectionsParams, TRetrieveConnectionsResult } from '@linkedapi/node';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
5
|
+
export declare class RetrieveConnectionsTool extends OperationTool<TRetrieveConnectionsParams, TRetrieveConnectionsResult[]> {
|
|
6
|
+
readonly name = "retrieve_connections";
|
|
7
|
+
readonly operationName: "retrieveConnections";
|
|
8
|
+
protected readonly schema: z.ZodObject<{
|
|
9
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
10
|
+
since: z.ZodOptional<z.ZodString>;
|
|
11
|
+
filter: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
14
|
+
position: z.ZodOptional<z.ZodString>;
|
|
15
|
+
locations: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16
|
+
industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17
|
+
currentCompanies: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18
|
+
previousCompanies: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19
|
+
schools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20
|
+
}, z.core.$strip>>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
getTool(): Tool;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=retrieve-connections.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-connections.d.ts","sourceRoot":"","sources":["../../src/tools/retrieve-connections.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,0BAA0B,EAC1B,0BAA0B,EAC3B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,uBAAwB,SAAQ,aAAa,CACxD,0BAA0B,EAC1B,0BAA0B,EAAE,CAC7B;IACC,SAAyB,IAAI,0BAA0B;IACvD,SAAyB,aAAa,wBAAsC;IAC5E,mBAA4B,MAAM;;;;;;;;;;;;;sBAe/B;IAEa,OAAO,IAAI,IAAI;CAuEhC"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RetrieveConnectionsTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class RetrieveConnectionsTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'retrieve_connections';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.retrieveConnections;
|
|
10
|
+
schema = zod_1.z.object({
|
|
11
|
+
limit: zod_1.z.number().min(1).max(1000).optional(),
|
|
12
|
+
since: zod_1.z.string().optional(),
|
|
13
|
+
filter: zod_1.z
|
|
14
|
+
.object({
|
|
15
|
+
firstName: zod_1.z.string().optional(),
|
|
16
|
+
lastName: zod_1.z.string().optional(),
|
|
17
|
+
position: zod_1.z.string().optional(),
|
|
18
|
+
locations: zod_1.z.array(zod_1.z.string()).optional(),
|
|
19
|
+
industries: zod_1.z.array(zod_1.z.string()).optional(),
|
|
20
|
+
currentCompanies: zod_1.z.array(zod_1.z.string()).optional(),
|
|
21
|
+
previousCompanies: zod_1.z.array(zod_1.z.string()).optional(),
|
|
22
|
+
schools: zod_1.z.array(zod_1.z.string()).optional(),
|
|
23
|
+
})
|
|
24
|
+
.optional(),
|
|
25
|
+
});
|
|
26
|
+
getTool() {
|
|
27
|
+
return {
|
|
28
|
+
name: this.name,
|
|
29
|
+
description: 'allows you to retrieve your connections and perform additional person-related actions if needed (st.retrieveConnections action).',
|
|
30
|
+
inputSchema: {
|
|
31
|
+
type: 'object',
|
|
32
|
+
properties: {
|
|
33
|
+
limit: {
|
|
34
|
+
type: 'number',
|
|
35
|
+
description: 'Optional. Number of connections to return. Defaults to 10, with a maximum value of 1000.',
|
|
36
|
+
},
|
|
37
|
+
since: {
|
|
38
|
+
type: 'string',
|
|
39
|
+
description: 'Optional. ISO date string that filters connections to only include those made on or after the specified date. Only works when filter is not provided.',
|
|
40
|
+
},
|
|
41
|
+
filter: {
|
|
42
|
+
type: 'object',
|
|
43
|
+
description: 'Optional. Object that specifies filtering criteria for people. When multiple filter fields are specified, they are combined using AND logic.',
|
|
44
|
+
properties: {
|
|
45
|
+
firstName: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
description: 'Optional. First name of person.',
|
|
48
|
+
},
|
|
49
|
+
lastName: {
|
|
50
|
+
type: 'string',
|
|
51
|
+
description: 'Optional. Last name of person.',
|
|
52
|
+
},
|
|
53
|
+
position: {
|
|
54
|
+
type: 'string',
|
|
55
|
+
description: 'Optional. Job position of person.',
|
|
56
|
+
},
|
|
57
|
+
locations: {
|
|
58
|
+
type: 'array',
|
|
59
|
+
description: 'Optional. Array of free-form strings representing locations. Matches if person is located in any of the listed locations.',
|
|
60
|
+
items: { type: 'string' },
|
|
61
|
+
},
|
|
62
|
+
industries: {
|
|
63
|
+
type: 'array',
|
|
64
|
+
description: 'Optional. Array of enums representing industries. Matches if person works in any of the listed industries. Takes specific values available in the LinkedIn interface.',
|
|
65
|
+
items: { type: 'string' },
|
|
66
|
+
},
|
|
67
|
+
currentCompanies: {
|
|
68
|
+
type: 'array',
|
|
69
|
+
description: 'Optional. Array of company names. Matches if person currently works at any of the listed companies.',
|
|
70
|
+
items: { type: 'string' },
|
|
71
|
+
},
|
|
72
|
+
previousCompanies: {
|
|
73
|
+
type: 'array',
|
|
74
|
+
description: 'Optional. Array of company names. Matches if person previously worked at any of the listed companies.',
|
|
75
|
+
items: { type: 'string' },
|
|
76
|
+
},
|
|
77
|
+
schools: {
|
|
78
|
+
type: 'array',
|
|
79
|
+
description: 'Optional. Array of institution names. Matches if person currently attends or previously attended any of the listed institutions.',
|
|
80
|
+
items: { type: 'string' },
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.RetrieveConnectionsTool = RetrieveConnectionsTool;
|
|
90
|
+
//# sourceMappingURL=retrieve-connections.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-connections.js","sourceRoot":"","sources":["../../src/tools/retrieve-connections.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
4
|
+
export declare class RetrievePendingRequestsTool extends OperationTool<unknown, unknown> {
|
|
5
|
+
readonly name = "retrieve_pending_requests";
|
|
6
|
+
readonly operationName: "retrievePendingRequests";
|
|
7
|
+
protected readonly schema: z.ZodObject<{}, z.core.$strip>;
|
|
8
|
+
getTool(): Tool;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=retrieve-pending-requests.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-pending-requests.d.ts","sourceRoot":"","sources":["../../src/tools/retrieve-pending-requests.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,2BAA4B,SAAQ,aAAa,CAAC,OAAO,EAAE,OAAO,CAAC;IAC9E,SAAyB,IAAI,+BAA+B;IAC5D,SAAyB,aAAa,4BAA0C;IAChF,mBAA4B,MAAM,iCAAgB;IAElC,OAAO,IAAI,IAAI;CAWhC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RetrievePendingRequestsTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class RetrievePendingRequestsTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'retrieve_pending_requests';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.retrievePendingRequests;
|
|
10
|
+
schema = zod_1.z.object({});
|
|
11
|
+
getTool() {
|
|
12
|
+
return {
|
|
13
|
+
name: this.name,
|
|
14
|
+
description: 'Allows you to retrieve pending connection requests sent from your account. (st.retrievePendingRequests action).',
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.RetrievePendingRequestsTool = RetrievePendingRequestsTool;
|
|
23
|
+
//# sourceMappingURL=retrieve-pending-requests.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-pending-requests.js","sourceRoot":"","sources":["../../src/tools/retrieve-pending-requests.ts"],"names":[],"mappings":";;;AAAA,0CAAiD;AAEjD,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,2BAA4B,SAAQ,kCAA+B;IACrD,IAAI,GAAG,2BAA2B,CAAC;IACnC,aAAa,GAAG,qBAAc,CAAC,uBAAuB,CAAC;IACpD,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAElC,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,iHAAiH;YACnH,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE,EAAE;aACf;SACF,CAAC;IACJ,CAAC;CACF;AAhBD,kEAgBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
4
|
+
export declare class RetrievePerformanceTool extends OperationTool<unknown, unknown> {
|
|
5
|
+
readonly name = "retrieve_performance";
|
|
6
|
+
readonly operationName: "retrievePerformance";
|
|
7
|
+
protected readonly schema: z.ZodObject<{}, z.core.$strip>;
|
|
8
|
+
getTool(): Tool;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=retrieve-performance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-performance.d.ts","sourceRoot":"","sources":["../../src/tools/retrieve-performance.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,uBAAwB,SAAQ,aAAa,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1E,SAAyB,IAAI,0BAA0B;IACvD,SAAyB,aAAa,wBAAsC;IAC5E,mBAA4B,MAAM,iCAAgB;IAElC,OAAO,IAAI,IAAI;CAWhC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RetrievePerformanceTool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class RetrievePerformanceTool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
name = 'retrieve_performance';
|
|
9
|
+
operationName = node_1.OPERATION_NAME.retrievePerformance;
|
|
10
|
+
schema = zod_1.z.object({});
|
|
11
|
+
getTool() {
|
|
12
|
+
return {
|
|
13
|
+
name: this.name,
|
|
14
|
+
description: 'Allows you to retrieve performance analytics from your LinkedIn dashboard (st.retrievePerformance action).',
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.RetrievePerformanceTool = RetrievePerformanceTool;
|
|
23
|
+
//# sourceMappingURL=retrieve-performance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-performance.js","sourceRoot":"","sources":["../../src/tools/retrieve-performance.ts"],"names":[],"mappings":";;;AAAA,0CAAiD;AAEjD,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,uBAAwB,SAAQ,kCAA+B;IACjD,IAAI,GAAG,sBAAsB,CAAC;IAC9B,aAAa,GAAG,qBAAc,CAAC,mBAAmB,CAAC;IAChD,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAElC,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,4GAA4G;YAC9G,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE,EAAE;aACf;SACF,CAAC;IACJ,CAAC;CACF;AAhBD,0DAgBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { OperationTool } from '../utils/linked-api-tool.js';
|
|
4
|
+
export declare class RetrieveSSITool extends OperationTool<unknown, unknown> {
|
|
5
|
+
readonly operationName: "retrieveSSI";
|
|
6
|
+
readonly name = "retrieve_ssi";
|
|
7
|
+
protected readonly schema: z.ZodObject<{}, z.core.$strip>;
|
|
8
|
+
getTool(): Tool;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=retrieve-ssi.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-ssi.d.ts","sourceRoot":"","sources":["../../src/tools/retrieve-ssi.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE5D,qBAAa,eAAgB,SAAQ,aAAa,CAAC,OAAO,EAAE,OAAO,CAAC;IAClE,SAAyB,aAAa,gBAA8B;IACpE,SAAyB,IAAI,kBAAkB;IAC/C,mBAA4B,MAAM,iCAAgB;IAElC,OAAO,IAAI,IAAI;CAWhC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RetrieveSSITool = void 0;
|
|
4
|
+
const node_1 = require("@linkedapi/node");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const linked_api_tool_js_1 = require("../utils/linked-api-tool.js");
|
|
7
|
+
class RetrieveSSITool extends linked_api_tool_js_1.OperationTool {
|
|
8
|
+
operationName = node_1.OPERATION_NAME.retrieveSSI;
|
|
9
|
+
name = 'retrieve_ssi';
|
|
10
|
+
schema = zod_1.z.object({});
|
|
11
|
+
getTool() {
|
|
12
|
+
return {
|
|
13
|
+
name: this.name,
|
|
14
|
+
description: 'Allows you to retrieve your current SSI (Social Selling Index) (st.retrieveSSI action).',
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.RetrieveSSITool = RetrieveSSITool;
|
|
23
|
+
//# sourceMappingURL=retrieve-ssi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-ssi.js","sourceRoot":"","sources":["../../src/tools/retrieve-ssi.ts"],"names":[],"mappings":";;;AAAA,0CAAiD;AAEjD,6BAAwB;AAExB,oEAA4D;AAE5D,MAAa,eAAgB,SAAQ,kCAA+B;IACzC,aAAa,GAAG,qBAAc,CAAC,WAAW,CAAC;IAC3C,IAAI,GAAG,cAAc,CAAC;IACnB,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAElC,OAAO;QACrB,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,yFAAyF;YAC3F,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE,EAAE;aACf;SACF,CAAC;IACJ,CAAC;CACF;AAhBD,0CAgBC"}
|