@atlassian-dc-mcp/jira 0.8.3 → 0.9.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.9.0](https://github.com/b1ff/atlassian-dc-mcp/compare/v0.8.2...v0.9.0) (2025-09-13)
7
+
8
+
9
+ ### Features
10
+
11
+ * preparation to publish to MCP registry ([1fdb772](https://github.com/b1ff/atlassian-dc-mcp/commit/1fdb772b419a5c472fafa2de4304e471471447c5))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.8.3](https://github.com/b1ff/atlassian-dc-mcp/compare/v0.8.0...v0.8.3) (2025-09-06)
7
18
 
8
19
  **Note:** Version bump only for package @atlassian-dc-mcp/jira
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlassian-dc-mcp/jira",
3
- "version": "0.8.3",
3
+ "version": "0.9.0",
4
4
  "main": "build/index.js",
5
5
  "type": "module",
6
6
  "bin": "./bin/run.js",
@@ -15,7 +15,7 @@
15
15
  "test": "jest"
16
16
  },
17
17
  "dependencies": {
18
- "@atlassian-dc-mcp/common": "^0.8.3",
18
+ "@atlassian-dc-mcp/common": "^0.9.0",
19
19
  "@modelcontextprotocol/sdk": "^1.17.5",
20
20
  "dotenv": "^16.4.7",
21
21
  "zod": "^3.24.2"
@@ -25,8 +25,9 @@
25
25
  "nodemon": "^3.1.10",
26
26
  "ts-node": "^10.9.2"
27
27
  },
28
+ "mcpName": "io.github.b1ff/atlassian-dc-mcp-jira",
28
29
  "publishConfig": {
29
30
  "access": "public"
30
31
  },
31
- "gitHead": "6198b1a872f1937c91dadc6d789749cc5f2afd1f"
32
+ "gitHead": "dcd7d3ac825057c80eb75f72304f23a934d7a0bf"
32
33
  }
package/server.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3
+ "name": "io.github.b1ff/atlassian-dc-mcp",
4
+ "description": "MCP server for Atlassian Jira Data Center - search, view, and create issues",
5
+ "status": "active",
6
+ "repository": {
7
+ "url": "https://github.com/b1ff/atlassian-dc-mcp",
8
+ "source": "github"
9
+ },
10
+ "version": "0.8.3",
11
+ "packages": [
12
+ {
13
+ "registry_type": "npm",
14
+ "registry_base_url": "https://registry.npmjs.org",
15
+ "identifier": "@atlassian-dc-mcp/jira",
16
+ "version": "0.8.3",
17
+ "transport": {
18
+ "type": "stdio"
19
+ },
20
+ "environment_variables": [
21
+ {
22
+ "description": "Jira host domain (e.g. your-instance.atlassian.net)",
23
+ "is_required": false,
24
+ "format": "string",
25
+ "is_secret": false,
26
+ "name": "JIRA_HOST"
27
+ },
28
+ {
29
+ "description": "Jira API base path (alternative to JIRA_HOST)",
30
+ "is_required": false,
31
+ "format": "string",
32
+ "is_secret": false,
33
+ "name": "JIRA_API_BASE_PATH"
34
+ },
35
+ {
36
+ "description": "Jira Personal Access Token or API token",
37
+ "is_required": true,
38
+ "format": "string",
39
+ "is_secret": true,
40
+ "name": "JIRA_API_TOKEN"
41
+ }
42
+ ]
43
+ }
44
+ ]
45
+ }