@universal-mcp-toolkit/server-linear 0.1.0 → 0.1.1
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/.well-known/mcp-server.json +58 -58
- package/LICENSE +21 -21
- package/README.md +57 -0
- package/package.json +4 -8
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/json",
|
|
3
|
-
"name": "linear",
|
|
4
|
-
"title": "Linear MCP Server",
|
|
5
|
-
"description": "Search, inspect, create, and triage Linear issues with team-aware resources and prompts.",
|
|
6
|
-
"version": "0.1.0",
|
|
7
|
-
"packageName": "@universal-mcp-toolkit/server-linear",
|
|
8
|
-
"homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
|
|
9
|
-
"repositoryUrl": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit",
|
|
10
|
-
"documentationUrl": "https://developers.linear.app/docs/graphql",
|
|
11
|
-
"transports": [
|
|
12
|
-
"stdio",
|
|
13
|
-
"sse"
|
|
14
|
-
],
|
|
15
|
-
"authentication": {
|
|
16
|
-
"mode": "environment-variables",
|
|
17
|
-
"required": [
|
|
18
|
-
"LINEAR_API_KEY"
|
|
19
|
-
],
|
|
20
|
-
"optional": [
|
|
21
|
-
"LINEAR_DEFAULT_TEAM_ID",
|
|
22
|
-
"LINEAR_DEFAULT_TEAM_KEY",
|
|
23
|
-
"LINEAR_WORKSPACE_NAME",
|
|
24
|
-
"LINEAR_API_URL"
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
|
-
"capabilities": {
|
|
28
|
-
"tools": true,
|
|
29
|
-
"resources": true,
|
|
30
|
-
"prompts": true
|
|
31
|
-
},
|
|
32
|
-
"tools": [
|
|
33
|
-
"search_issues",
|
|
34
|
-
"get_issue",
|
|
35
|
-
"create_issue"
|
|
36
|
-
],
|
|
37
|
-
"resources": [
|
|
38
|
-
{
|
|
39
|
-
"name": "team",
|
|
40
|
-
"uri": "linear://team/default",
|
|
41
|
-
"mimeType": "application/json",
|
|
42
|
-
"description": "JSON summary of accessible Linear teams and the configured default team."
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"prompts": [
|
|
46
|
-
{
|
|
47
|
-
"name": "sprint-triage",
|
|
48
|
-
"description": "Generate a sprint triage prompt grounded in the current Linear team context."
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"tags": [
|
|
52
|
-
"linear",
|
|
53
|
-
"issues",
|
|
54
|
-
"triage",
|
|
55
|
-
"graphql",
|
|
56
|
-
"project-management"
|
|
57
|
-
]
|
|
58
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/json",
|
|
3
|
+
"name": "linear",
|
|
4
|
+
"title": "Linear MCP Server",
|
|
5
|
+
"description": "Search, inspect, create, and triage Linear issues with team-aware resources and prompts.",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"packageName": "@universal-mcp-toolkit/server-linear",
|
|
8
|
+
"homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
|
|
9
|
+
"repositoryUrl": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit",
|
|
10
|
+
"documentationUrl": "https://developers.linear.app/docs/graphql",
|
|
11
|
+
"transports": [
|
|
12
|
+
"stdio",
|
|
13
|
+
"sse"
|
|
14
|
+
],
|
|
15
|
+
"authentication": {
|
|
16
|
+
"mode": "environment-variables",
|
|
17
|
+
"required": [
|
|
18
|
+
"LINEAR_API_KEY"
|
|
19
|
+
],
|
|
20
|
+
"optional": [
|
|
21
|
+
"LINEAR_DEFAULT_TEAM_ID",
|
|
22
|
+
"LINEAR_DEFAULT_TEAM_KEY",
|
|
23
|
+
"LINEAR_WORKSPACE_NAME",
|
|
24
|
+
"LINEAR_API_URL"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"capabilities": {
|
|
28
|
+
"tools": true,
|
|
29
|
+
"resources": true,
|
|
30
|
+
"prompts": true
|
|
31
|
+
},
|
|
32
|
+
"tools": [
|
|
33
|
+
"search_issues",
|
|
34
|
+
"get_issue",
|
|
35
|
+
"create_issue"
|
|
36
|
+
],
|
|
37
|
+
"resources": [
|
|
38
|
+
{
|
|
39
|
+
"name": "team",
|
|
40
|
+
"uri": "linear://team/default",
|
|
41
|
+
"mimeType": "application/json",
|
|
42
|
+
"description": "JSON summary of accessible Linear teams and the configured default team."
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"prompts": [
|
|
46
|
+
{
|
|
47
|
+
"name": "sprint-triage",
|
|
48
|
+
"description": "Generate a sprint triage prompt grounded in the current Linear team context."
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"tags": [
|
|
52
|
+
"linear",
|
|
53
|
+
"issues",
|
|
54
|
+
"triage",
|
|
55
|
+
"graphql",
|
|
56
|
+
"project-management"
|
|
57
|
+
]
|
|
58
|
+
}
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 universal-mcp-toolkit
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 universal-mcp-toolkit
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Use this server to search Linear issues, open a specific issue, and create new ones from Claude or Cursor.
|
|
2
|
+
|
|
3
|
+
## What it can do
|
|
4
|
+
- `search_issues`: search issues by text or an exact issue key like `ENG-123`, with optional team and state filters.
|
|
5
|
+
- `get_issue`: open one issue by UUID or by an issue key like `ENG-123`.
|
|
6
|
+
- `create_issue`: create a new issue in a chosen team, or use your default team if you set one.
|
|
7
|
+
|
|
8
|
+
## Setup
|
|
9
|
+
Set these env vars before you start. Only `LINEAR_API_KEY` is required:
|
|
10
|
+
- `LINEAR_API_KEY`: your Linear personal API key. Create it here: https://linear.app/settings/api
|
|
11
|
+
- `LINEAR_DEFAULT_TEAM_ID`: optional. Sets the default team ID for issue creation.
|
|
12
|
+
- `LINEAR_DEFAULT_TEAM_KEY`: optional. Sets the default team key for issue creation, like `ENG`.
|
|
13
|
+
- `LINEAR_WORKSPACE_NAME`: optional. Adds a friendly workspace name to responses.
|
|
14
|
+
- `LINEAR_API_URL`: optional. Leave this unset unless you need a custom GraphQL URL. The usual value is `https://api.linear.app/graphql`.
|
|
15
|
+
If you set both default team vars, make sure they point to the same team.
|
|
16
|
+
|
|
17
|
+
## Claude Desktop config
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"mcpServers": {
|
|
21
|
+
"linear": {
|
|
22
|
+
"command": "npx",
|
|
23
|
+
"args": ["-y", "@universal-mcp-toolkit/server-linear@latest"],
|
|
24
|
+
"env": {
|
|
25
|
+
"LINEAR_API_KEY": "your_linear_api_key",
|
|
26
|
+
"LINEAR_DEFAULT_TEAM_ID": "your_default_team_id",
|
|
27
|
+
"LINEAR_DEFAULT_TEAM_KEY": "ENG",
|
|
28
|
+
"LINEAR_WORKSPACE_NAME": "your_workspace_name",
|
|
29
|
+
"LINEAR_API_URL": "https://api.linear.app/graphql"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Cursor config
|
|
37
|
+
```json
|
|
38
|
+
{
|
|
39
|
+
"mcpServers": {
|
|
40
|
+
"linear": {
|
|
41
|
+
"command": "npx",
|
|
42
|
+
"args": ["-y", "@universal-mcp-toolkit/server-linear@latest"],
|
|
43
|
+
"env": {
|
|
44
|
+
"LINEAR_API_KEY": "your_linear_api_key",
|
|
45
|
+
"LINEAR_DEFAULT_TEAM_ID": "your_default_team_id",
|
|
46
|
+
"LINEAR_DEFAULT_TEAM_KEY": "ENG",
|
|
47
|
+
"LINEAR_WORKSPACE_NAME": "your_workspace_name",
|
|
48
|
+
"LINEAR_API_URL": "https://api.linear.app/graphql"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Quick example
|
|
56
|
+
Ask Claude:
|
|
57
|
+
> Search Linear for open issues about login redirects in team ENG. Open the best match and summarize it. If nothing already tracks it, create a new issue in ENG with a short bug report.
|
package/package.json
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@universal-mcp-toolkit/server-linear",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Issue search, triage, and workflow tools for Linear.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
8
|
-
"server-linear": "./dist/index.js",
|
|
9
8
|
"umt-linear": "./dist/index.js"
|
|
10
9
|
},
|
|
11
10
|
"repository": {
|
|
12
11
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/
|
|
12
|
+
"url": "git+https://github.com/universal-mcp-toolkit/universal-mcp-toolkit.git"
|
|
14
13
|
},
|
|
15
|
-
"homepage": "https://github.com/
|
|
14
|
+
"homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
|
|
16
15
|
"exports": {
|
|
17
16
|
".": {
|
|
18
17
|
"types": "./dist/index.d.ts",
|
|
@@ -36,12 +35,9 @@
|
|
|
36
35
|
"workflow"
|
|
37
36
|
],
|
|
38
37
|
"dependencies": {
|
|
39
|
-
"@universal-mcp-toolkit/core": "0.
|
|
38
|
+
"@universal-mcp-toolkit/core": "0.2.0",
|
|
40
39
|
"zod": "^4.3.6"
|
|
41
40
|
},
|
|
42
|
-
"publishConfig": {
|
|
43
|
-
"access": "public"
|
|
44
|
-
},
|
|
45
41
|
"scripts": {
|
|
46
42
|
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
47
43
|
"dev": "tsx watch src/index.ts",
|