@atlassian-dc-mcp/confluence 0.8.2 → 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 +19 -0
- package/package.json +4 -3
- package/server.json +45 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
|
|
17
|
+
## [0.8.3](https://github.com/b1ff/atlassian-dc-mcp/compare/v0.8.0...v0.8.3) (2025-09-06)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @atlassian-dc-mcp/confluence
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.8.2](https://github.com/b1ff/atlassian-dc-mcp/compare/v0.8.0...v0.8.2) (2025-09-06)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @atlassian-dc-mcp/confluence
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlassian-dc-mcp/confluence",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./bin/run.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"test": "jest"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@atlassian-dc-mcp/common": "^0.
|
|
17
|
+
"@atlassian-dc-mcp/common": "^0.9.0",
|
|
18
18
|
"@modelcontextprotocol/sdk": "^1.17.5",
|
|
19
19
|
"dotenv": "^16.4.7",
|
|
20
20
|
"node-fetch": "^3.3.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-confluence",
|
|
28
29
|
"publishConfig": {
|
|
29
30
|
"access": "public"
|
|
30
31
|
},
|
|
31
|
-
"gitHead": "
|
|
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 Confluence Data Center - access and manage content",
|
|
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/confluence",
|
|
16
|
+
"version": "0.8.3",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
},
|
|
20
|
+
"environment_variables": [
|
|
21
|
+
{
|
|
22
|
+
"description": "Confluence host domain (e.g. your-instance.atlassian.net)",
|
|
23
|
+
"is_required": false,
|
|
24
|
+
"format": "string",
|
|
25
|
+
"is_secret": false,
|
|
26
|
+
"name": "CONFLUENCE_HOST"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"description": "Confluence API base path (alternative to CONFLUENCE_HOST)",
|
|
30
|
+
"is_required": false,
|
|
31
|
+
"format": "string",
|
|
32
|
+
"is_secret": false,
|
|
33
|
+
"name": "CONFLUENCE_API_BASE_PATH"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"description": "Confluence Personal Access Token or API token",
|
|
37
|
+
"is_required": true,
|
|
38
|
+
"format": "string",
|
|
39
|
+
"is_secret": true,
|
|
40
|
+
"name": "CONFLUENCE_API_TOKEN"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|