@mcpio/jira 2.0.0 → 2.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/README.md +58 -60
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1105 -0
- package/index.js +1 -1357
- package/package.json +9 -3
- package/.claude/settings.local.json +0 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpio/jira",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for Jira API integration with enhanced ADF formatting support and security hardening",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Volodymyr Press",
|
|
@@ -9,11 +9,13 @@
|
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"main": "index.js",
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
12
13
|
"bin": {
|
|
13
14
|
"mcpio-jira": "index.js"
|
|
14
15
|
},
|
|
15
16
|
"scripts": {
|
|
16
|
-
"
|
|
17
|
+
"build": "tsc",
|
|
18
|
+
"start": "node dist/index.js"
|
|
17
19
|
},
|
|
18
20
|
"keywords": [
|
|
19
21
|
"mcp",
|
|
@@ -41,5 +43,9 @@
|
|
|
41
43
|
"bugs": {
|
|
42
44
|
"url": "https://github.com/wince87/mcp_jira/issues"
|
|
43
45
|
},
|
|
44
|
-
"homepage": "https://github.com/wince87/mcp_jira#readme"
|
|
46
|
+
"homepage": "https://github.com/wince87/mcp_jira#readme",
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^25.2.2",
|
|
49
|
+
"typescript": "^5.9.3"
|
|
50
|
+
}
|
|
45
51
|
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"Bash(npx tsc:*)",
|
|
5
|
-
"Bash(/Users/wince/projects/ridebook-front/node_modules/.bin/tsc:*)",
|
|
6
|
-
"Bash(/Users/wince/projects/ridebook-backend/node_modules/.bin/tsc:*)",
|
|
7
|
-
"Bash(npm run build:*)",
|
|
8
|
-
"WebFetch(domain:help.mikrotik.com)",
|
|
9
|
-
"Bash(curl:*)",
|
|
10
|
-
"Bash(python3:*)",
|
|
11
|
-
"Bash(npm install:*)",
|
|
12
|
-
"Bash(for id in '*4' '*5' '*6' '*7' '*8' '*9' '*A' '*B' '*C' '*D' '*E' '*F' '*10')",
|
|
13
|
-
"Bash(do)",
|
|
14
|
-
"Bash(done)",
|
|
15
|
-
"Bash(for id in '*80000003' '*80000004' '*80000005' '*80000006')",
|
|
16
|
-
"Bash(for id in '*400' '*401')",
|
|
17
|
-
"Bash(printf:*)",
|
|
18
|
-
"Bash(npx vite build:*)",
|
|
19
|
-
"Bash(git add:*)",
|
|
20
|
-
"Bash(git commit -m \"$\\(cat <<''EOF''\nRouter Panel — MikroTik dual-ISP management with PCC load balancing\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>\nEOF\n\\)\")",
|
|
21
|
-
"Bash(git remote add:*)",
|
|
22
|
-
"Bash(git push:*)",
|
|
23
|
-
"Bash(git commit:*)",
|
|
24
|
-
"Bash(lsof:*)",
|
|
25
|
-
"Bash(kill:*)",
|
|
26
|
-
"Bash(node:*)",
|
|
27
|
-
"Bash(ping:*)",
|
|
28
|
-
"WebFetch(domain:developer.atlassian.com)",
|
|
29
|
-
"WebFetch(domain:unpkg.com)",
|
|
30
|
-
"WebFetch(domain:docs.atlassian.com)",
|
|
31
|
-
"WebFetch(domain:dac-static.atlassian.com)",
|
|
32
|
-
"WebFetch(domain:community.developer.atlassian.com)",
|
|
33
|
-
"WebFetch(domain:github.com)",
|
|
34
|
-
"Bash(npm publish:*)"
|
|
35
|
-
]
|
|
36
|
-
}
|
|
37
|
-
}
|