@universal-mcp-toolkit/server-jira 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 +87 -87
- package/LICENSE +21 -21
- package/README.md +49 -0
- package/package.json +4 -8
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/json",
|
|
3
|
-
"name": "jira",
|
|
4
|
-
"title": "Jira MCP Server",
|
|
5
|
-
"description": "Search Jira Cloud issues, inspect tickets, transition work, and fetch project context.",
|
|
6
|
-
"version": "0.1.0",
|
|
7
|
-
"packageName": "@universal-mcp-toolkit/server-jira",
|
|
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://github.com/universal-mcp-toolkit/universal-mcp-toolkit/tree/main/servers/jira",
|
|
11
|
-
"transports": [
|
|
12
|
-
"stdio",
|
|
13
|
-
"sse"
|
|
14
|
-
],
|
|
15
|
-
"authentication": {
|
|
16
|
-
"mode": "environment-variables",
|
|
17
|
-
"required": [
|
|
18
|
-
"JIRA_BASE_URL",
|
|
19
|
-
"JIRA_EMAIL",
|
|
20
|
-
"JIRA_API_TOKEN"
|
|
21
|
-
],
|
|
22
|
-
"optional": [
|
|
23
|
-
"JIRA_DEFAULT_PROJECT_KEY"
|
|
24
|
-
]
|
|
25
|
-
},
|
|
26
|
-
"capabilities": {
|
|
27
|
-
"tools": true,
|
|
28
|
-
"resources": true,
|
|
29
|
-
"prompts": true
|
|
30
|
-
},
|
|
31
|
-
"tools": [
|
|
32
|
-
{
|
|
33
|
-
"name": "get_issue",
|
|
34
|
-
"description": "Fetch a Jira issue with normalized fields, description text, and comments."
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"name": "search_issues",
|
|
38
|
-
"description": "Search Jira issues with JQL or structured filters and return normalized issue summaries."
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"name": "transition_issue",
|
|
42
|
-
"description": "Resolve a Jira transition by name or id, apply it, and return the updated issue."
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"resources": [
|
|
46
|
-
{
|
|
47
|
-
"name": "project",
|
|
48
|
-
"uriTemplate": "jira://projects/{projectKey}",
|
|
49
|
-
"mimeType": "application/json",
|
|
50
|
-
"description": "Return normalized Jira project metadata as JSON."
|
|
51
|
-
}
|
|
52
|
-
],
|
|
53
|
-
"prompts": [
|
|
54
|
-
{
|
|
55
|
-
"name": "incident_triage",
|
|
56
|
-
"description": "Create a reusable incident-triage prompt using Jira issue context."
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"examples": {
|
|
60
|
-
"toolCalls": [
|
|
61
|
-
{
|
|
62
|
-
"name": "search_issues",
|
|
63
|
-
"arguments": {
|
|
64
|
-
"text": "latency spike",
|
|
65
|
-
"maxResults": 5
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"name": "get_issue",
|
|
70
|
-
"arguments": {
|
|
71
|
-
"issueKey": "OPS-42"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"name": "transition_issue",
|
|
76
|
-
"arguments": {
|
|
77
|
-
"issueKey": "OPS-42",
|
|
78
|
-
"transitionName": "Done",
|
|
79
|
-
"comment": "Mitigation deployed and metrics recovered."
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
],
|
|
83
|
-
"resourceUris": [
|
|
84
|
-
"jira://projects/OPS"
|
|
85
|
-
]
|
|
86
|
-
}
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/json",
|
|
3
|
+
"name": "jira",
|
|
4
|
+
"title": "Jira MCP Server",
|
|
5
|
+
"description": "Search Jira Cloud issues, inspect tickets, transition work, and fetch project context.",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"packageName": "@universal-mcp-toolkit/server-jira",
|
|
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://github.com/universal-mcp-toolkit/universal-mcp-toolkit/tree/main/servers/jira",
|
|
11
|
+
"transports": [
|
|
12
|
+
"stdio",
|
|
13
|
+
"sse"
|
|
14
|
+
],
|
|
15
|
+
"authentication": {
|
|
16
|
+
"mode": "environment-variables",
|
|
17
|
+
"required": [
|
|
18
|
+
"JIRA_BASE_URL",
|
|
19
|
+
"JIRA_EMAIL",
|
|
20
|
+
"JIRA_API_TOKEN"
|
|
21
|
+
],
|
|
22
|
+
"optional": [
|
|
23
|
+
"JIRA_DEFAULT_PROJECT_KEY"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"capabilities": {
|
|
27
|
+
"tools": true,
|
|
28
|
+
"resources": true,
|
|
29
|
+
"prompts": true
|
|
30
|
+
},
|
|
31
|
+
"tools": [
|
|
32
|
+
{
|
|
33
|
+
"name": "get_issue",
|
|
34
|
+
"description": "Fetch a Jira issue with normalized fields, description text, and comments."
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "search_issues",
|
|
38
|
+
"description": "Search Jira issues with JQL or structured filters and return normalized issue summaries."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "transition_issue",
|
|
42
|
+
"description": "Resolve a Jira transition by name or id, apply it, and return the updated issue."
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"resources": [
|
|
46
|
+
{
|
|
47
|
+
"name": "project",
|
|
48
|
+
"uriTemplate": "jira://projects/{projectKey}",
|
|
49
|
+
"mimeType": "application/json",
|
|
50
|
+
"description": "Return normalized Jira project metadata as JSON."
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"prompts": [
|
|
54
|
+
{
|
|
55
|
+
"name": "incident_triage",
|
|
56
|
+
"description": "Create a reusable incident-triage prompt using Jira issue context."
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"examples": {
|
|
60
|
+
"toolCalls": [
|
|
61
|
+
{
|
|
62
|
+
"name": "search_issues",
|
|
63
|
+
"arguments": {
|
|
64
|
+
"text": "latency spike",
|
|
65
|
+
"maxResults": 5
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "get_issue",
|
|
70
|
+
"arguments": {
|
|
71
|
+
"issueKey": "OPS-42"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "transition_issue",
|
|
76
|
+
"arguments": {
|
|
77
|
+
"issueKey": "OPS-42",
|
|
78
|
+
"transitionName": "Done",
|
|
79
|
+
"comment": "Mitigation deployed and metrics recovered."
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"resourceUris": [
|
|
84
|
+
"jira://projects/OPS"
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
}
|
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,49 @@
|
|
|
1
|
+
Jira MCP server for finding issues, reading tickets, and moving work in Jira Cloud.
|
|
2
|
+
|
|
3
|
+
## What it can do
|
|
4
|
+
- `search_issues`: Find issues with JQL or simple filters and get back short issue summaries.
|
|
5
|
+
- `get_issue`: Open one issue and pull its main fields, description text, and comments.
|
|
6
|
+
- `transition_issue`: Move an issue with a transition name or id, and optionally leave a comment.
|
|
7
|
+
|
|
8
|
+
## Setup
|
|
9
|
+
Set these env vars before you start:
|
|
10
|
+
- `JIRA_BASE_URL`: your Jira Cloud URL, like `https://your-team.atlassian.net`. Find it in Jira or Atlassian admin: [View product URLs](https://support.atlassian.com/organization-administration/docs/view-your-product-urls/)
|
|
11
|
+
- `JIRA_EMAIL`: the Atlassian account email tied to your Jira access: [Profile and visibility](https://id.atlassian.com/manage-profile/profile-and-visibility)
|
|
12
|
+
- `JIRA_API_TOKEN`: create an Atlassian API token here: [API tokens](https://id.atlassian.com/manage-profile/security/api-tokens)
|
|
13
|
+
|
|
14
|
+
## Claude Desktop config
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"mcpServers": {
|
|
18
|
+
"jira": {
|
|
19
|
+
"command": "npx",
|
|
20
|
+
"args": ["-y", "@universal-mcp-toolkit/server-jira@latest"],
|
|
21
|
+
"env": {
|
|
22
|
+
"JIRA_BASE_URL": "https://your-team.atlassian.net",
|
|
23
|
+
"JIRA_EMAIL": "you@example.com",
|
|
24
|
+
"JIRA_API_TOKEN": "your_api_token"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Cursor config
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"mcpServers": {
|
|
35
|
+
"jira": {
|
|
36
|
+
"command": "npx",
|
|
37
|
+
"args": ["-y", "@universal-mcp-toolkit/server-jira@latest"],
|
|
38
|
+
"env": {
|
|
39
|
+
"JIRA_BASE_URL": "https://your-team.atlassian.net",
|
|
40
|
+
"JIRA_EMAIL": "you@example.com",
|
|
41
|
+
"JIRA_API_TOKEN": "your_api_token"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Quick example
|
|
49
|
+
"Search Jira for open bugs in project WEB from the last 7 days, show me the top five, then open WEB-142 and summarize the latest comments."
|
package/package.json
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@universal-mcp-toolkit/server-jira",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Issue search, transitions, and triage tools for Jira.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
8
|
-
"server-jira": "./dist/index.js",
|
|
9
8
|
"umt-jira": "./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
|
"tickets"
|
|
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",
|