-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@tacticlaunch/mcp-linear",
"version": "1.0.9",
"description": "A Model Context Protocol (MCP) server implementation for the Linear GraphQL API that enables AI assistants to interact with Linear project management systems.",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-linear": "./dist/index.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"dev": "nodemon --exec node --loader ts-node/esm src/index.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepare": "npm run build",
"postinstall": "node -e \"try { require('fs').chmodSync('./dist/index.js', '755') } catch (e) {}\""
},
"smithery": {
"name": "linear",
"displayName": "Linear",
"description": "Interact with Linear project management through AI assistants",
"tools": [
"linear_getViewer",
"linear_getOrganization",
"linear_getUsers",
"linear_getLabels",
"linear_getTeams",
"linear_getProjects",
"linear_createProject",
"linear_getIssues",
"linear_getIssueById",
"linear_searchIssues",
"linear_createIssue",
"linear_updateIssue",
"linear_createComment",
"linear_addIssueLabel",
"linear_removeIssueLabel"
]
},
"keywords": [
"mcp",
"linear",
"cursor",
"claude",
"ai",
"model-context-protocol",
"project-management",
"smithery"
],
"author": "Alexey Elizarov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tacticlaunch/mcp-linear"
},
"dependencies": {
"@linear/sdk": "^38.0.0",
"@modelcontextprotocol/sdk": "^1.6.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"graphql": "^16.10.0",
"graphql-request": "^7.1.2",
"helmet": "^8.0.0",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}