package.json•2.52 kB
{
"name": "linkup-mcp-server",
"author": "Linkup",
"version": "2.0.0",
"description": "Linkup MCP server for web search",
"module": "./src/index.ts",
"main": "./dist/index.cjs",
"type": "module",
"scripts": {
"dev": "npx smithery dev",
"build": "npx smithery build",
"build:stdio": "smithery build src/index.ts --transport stdio -o dist/index.cjs && npm run add-shebang",
"add-shebang": "echo '#!/usr/bin/env node' | cat - dist/index.cjs > dist/index.cjs.tmp && mv dist/index.cjs.tmp dist/index.cjs && chmod +x dist/index.cjs",
"start": "npm run start:http",
"start:http": "node .smithery/index.cjs",
"start:stdio": "SERVER_TRANSPORT=stdio node dist/index.cjs",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"prepare": "husky",
"prune": "knip",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.cjs",
"build:mcpb": "bash mcpb/generate.sh",
"commitlint": "commitlint --edit",
"semantic-release": "semantic-release"
},
"keywords": [
"mcp",
"search mcp",
"modelcontextprotocol",
"linkup",
"workflow",
"websearch",
"search",
"ai",
"linkedin"
],
"bin": {
"linkup-mcp-server": "dist/index.cjs"
},
"files": [
"dist"
],
"homepage": "https://github.com/LinkupPlatform/linkup-mcp-server#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"linkup-sdk": "^2.4.1",
"zod": "^3.25.46"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@smithery/cli": "^1.4.6",
"@types/node": "^24.8.0",
"husky": "^9.1.7",
"knip": "^5.65.0",
"semantic-release": "^25.0.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinkupPlatform/linkup-mcp-server.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "mcpb/linkup-mcp-server.mcpb",
"label": "MCPB Bundle"
}
],
"failTitle": "The automated release is failing 🚨",
"failComment": false,
"labels": false,
"releasedLabels": false
}
]
]
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
}
}