Skip to content

Commit 1fdb772

Browse files
committed
feat: preparation to publish to MCP registry
1 parent 99b3459 commit 1fdb772

File tree

7 files changed

+139
-0
lines changed

7 files changed

+139
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,4 @@ temp/
5454
# Yarn Integrity file
5555
.yarn-integrity
5656
.aider*
57+
.mcpregistry_*

packages/bitbucket/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"ts-jest": "^29.4.1",
2929
"ts-node": "^10.9.2"
3030
},
31+
"mcpName": "io.github.b1ff/atlassian-dc-mcp-bitbucket",
3132
"publishConfig": {
3233
"access": "public"
3334
},

packages/bitbucket/server.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 Bitbucket Data Center - interact with repositories and code",
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/bitbucket",
16+
"version": "0.8.3",
17+
"transport": {
18+
"type": "stdio"
19+
},
20+
"environment_variables": [
21+
{
22+
"description": "Bitbucket host domain (e.g. your-instance.atlassian.net)",
23+
"is_required": false,
24+
"format": "string",
25+
"is_secret": false,
26+
"name": "BITBUCKET_HOST"
27+
},
28+
{
29+
"description": "Bitbucket API base path (alternative to BITBUCKET_HOST)",
30+
"is_required": false,
31+
"format": "string",
32+
"is_secret": false,
33+
"name": "BITBUCKET_API_BASE_PATH"
34+
},
35+
{
36+
"description": "Bitbucket Personal Access Token or API token",
37+
"is_required": true,
38+
"format": "string",
39+
"is_secret": true,
40+
"name": "BITBUCKET_API_TOKEN"
41+
}
42+
]
43+
}
44+
]
45+
}

packages/confluence/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"nodemon": "^3.1.10",
2626
"ts-node": "^10.9.2"
2727
},
28+
"mcpName": "io.github.b1ff/atlassian-dc-mcp-confluence",
2829
"publishConfig": {
2930
"access": "public"
3031
},

packages/confluence/server.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
}

packages/jira/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"nodemon": "^3.1.10",
2626
"ts-node": "^10.9.2"
2727
},
28+
"mcpName": "io.github.b1ff/atlassian-dc-mcp-jira",
2829
"publishConfig": {
2930
"access": "public"
3031
},

packages/jira/server.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
}

0 commit comments

Comments
 (0)