org-jira-mcp-adapter 1.2.1 → 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.
@@ -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.js';
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.1",
3
+ "version": "1.2.2",
4
4
  "description": "MCP server for Jira Data Center/Server (On-Premise)",
5
5
  "type": "module",
6
- "main": "index.js",
6
+ "main": "index.mjs",
7
7
  "bin": {
8
- "org-jira-mcp-adapter": "./index.js"
8
+ "org-jira-mcp-adapter": "./index.mjs"
9
9
  },
10
10
  "scripts": {
11
- "start": "node index.js"
11
+ "start": "node index.mjs"
12
12
  },
13
13
  "dependencies": {
14
14
  "@atlassian-dc-mcp/common": "^0.9.9",
File without changes