org-jira-mcp-adapter 1.2.0 → 1.2.2
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
CHANGED
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
],
|
|
23
23
|
"env": {
|
|
24
24
|
"JIRA_HOST": "jira.example.com",
|
|
25
|
-
"JIRA_API_TOKEN": "
|
|
25
|
+
"JIRA_API_TOKEN": "your_pat_token"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
> **Важно**: Замените `jira.example.com` и `
|
|
32
|
+
> **Важно**: Замените `jira.example.com` и `your_pat_token` на ваши реальные данные.
|
|
33
33
|
|
|
34
34
|
### Переменные окружения
|
|
35
35
|
|
|
36
36
|
- `JIRA_HOST`: Адрес вашего Jira сервера (без протокола, например `jira.example.com`).
|
|
37
|
-
- `JIRA_API_TOKEN`: Ваш
|
|
37
|
+
- `JIRA_API_TOKEN`: Ваш Personal Access Token (PAT).
|
package/{index.js → index.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { connectServer, createMcpServer, formatToolResponse } from '@atlassian-dc-mcp/common';
|
|
3
|
-
import { JiraService, jiraToolSchemas } from './jira-service.
|
|
3
|
+
import { JiraService, jiraToolSchemas } from './jira-service.mjs';
|
|
4
4
|
import * as process from 'node:process';
|
|
5
5
|
|
|
6
6
|
const missingEnvVars = JiraService.validateConfig();
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "org-jira-mcp-adapter",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "MCP server for Jira Data Center/Server (On-Premise)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "index.
|
|
6
|
+
"main": "index.mjs",
|
|
7
7
|
"bin": {
|
|
8
|
-
"org-jira-mcp-adapter": "./index.
|
|
8
|
+
"org-jira-mcp-adapter": "./index.mjs"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"start": "node index.
|
|
11
|
+
"start": "node index.mjs"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@atlassian-dc-mcp/common": "^0.9.9",
|
|
File without changes
|