Skip to content

Commit dadfcfa

Browse files
committed
Lock file updated, package moved to Linked API org
1 parent 1d1a49a commit dadfcfa

34 files changed

Lines changed: 900 additions & 921 deletions

.github/workflows/merge-main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
id: version-check
7171
run: |
7272
PACKAGE_VERSION=$(node -p "require('./package.json').version")
73-
NPM_VERSION=$(npm view linkedapi-mcp version 2>/dev/null || echo "0.0.0")
73+
NPM_VERSION=$(npm view @linkedapi/mcp version 2>/dev/null || echo "0.0.0")
7474
if [ "$PACKAGE_VERSION" != "$NPM_VERSION" ]; then
7575
echo "should_publish=true" >> $GITHUB_OUTPUT
7676
echo "Version changed: $NPM_VERSION -> $PACKAGE_VERSION"
@@ -81,7 +81,7 @@ jobs:
8181
8282
- name: Publish to npm
8383
if: steps.version-check.outputs.should_publish == 'true'
84-
run: npm publish
84+
run: npm publish --access public
8585
env:
8686
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
8787

package-lock.json

Lines changed: 866 additions & 887 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "linkedapi-mcp",
2+
"name": "@linkedapi/mcp",
33
"version": "0.3.11",
44
"description": "MCP server that lets AI assistants control LinkedIn accounts and retrieve real-time data.",
55
"main": "dist/index.js",

src/linked-api-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import { LinkedApi, LinkedApiError, TLinkedApiConfig } from '@linkedapi/node';
32
import { buildLinkedApiHttpClient } from '@linkedapi/node/dist/core';
3+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
44

55
import { LinkedApiTools } from './linked-api-tools';
66
import { defineRequestTimeoutInSeconds } from './utils/define-request-timeout';

src/tools/check-connection-status.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import {
32
OPERATION_NAME,
43
TCheckConnectionStatusParams,
54
TCheckConnectionStatusResult,
65
} from '@linkedapi/node';
6+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
77
import { z } from 'zod';
88

99
import { OperationTool } from '../utils/linked-api-tool.js';

src/tools/comment-on-post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import { OPERATION_NAME, TCommentOnPostParams } from '@linkedapi/node';
2+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
33
import { z } from 'zod';
44

55
import { OperationTool } from '../utils/linked-api-tool.js';

src/tools/create-post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import { OPERATION_NAME, TCreatePostParams } from '@linkedapi/node';
2+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
33
import { z } from 'zod';
44

55
import { OperationTool } from '../utils/linked-api-tool.js';

src/tools/execute-custom-workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import { OPERATION_NAME, TWorkflowCompletion, TWorkflowDefinition } from '@linkedapi/node';
2+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
33
import { z } from 'zod';
44

55
import { OperationTool } from '../utils/linked-api-tool.js';

src/tools/fetch-company.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import { OPERATION_NAME, TFetchCompanyParams } from '@linkedapi/node';
2+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
33
import { z } from 'zod';
44

55
import { OperationTool } from '../utils/linked-api-tool.js';

src/tools/fetch-person.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Tool } from '@modelcontextprotocol/sdk/types.js';
21
import { OPERATION_NAME, TFetchPersonParams } from '@linkedapi/node';
2+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
33
import { z } from 'zod';
44

55
import { OperationTool } from '../utils/linked-api-tool.js';

0 commit comments

Comments
 (0)