Skip to content

Commit 42814ec

Browse files
authored
Merge pull request #151 from dgageot/sync-atlassian-2
Sync atlassian
2 parents ad3b228 + 0dd8c14 commit 42814ec

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed

prompts/catalog.yaml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,16 @@ registry:
143143
- name: slack.team_id
144144
prompts: 0
145145
resources: {}
146+
redis:
147+
description: Access to Redis database operations.
148+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/redis.md
149+
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/redis.svg
150+
tools: []
151+
secrets:
152+
- name: redis.host
153+
- name: redis.port
154+
prompts: 0
155+
resources: {}
146156
openapi-schema:
147157
description: OpenAPI Schema Model Context Protocol Server
148158
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/mcp/openapi-schema.md
@@ -162,16 +172,6 @@ registry:
162172
- name: search-schema
163173
prompts: 0
164174
resources: {}
165-
redis:
166-
description: Access to Redis database operations.
167-
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/redis.md
168-
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/redis.svg
169-
tools: []
170-
secrets:
171-
- name: redis.host
172-
- name: redis.port
173-
prompts: 0
174-
resources: {}
175175
github:
176176
description: Tools for interacting with the GitHub API, enabling file operations, repository management, search functionality, and more.
177177
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/mcp/github.md
@@ -506,8 +506,10 @@ registry:
506506
- name: jira_update_issue
507507
- name: jira_update_sprint
508508
secrets:
509-
- name: atlassian.jira.token
510-
- name: atlassian.confluence.token
509+
- name: atlassian.jira.api_token
510+
- name: atlassian.confluence.api_token
511+
- name: atlassian.jira.personal_token
512+
- name: atlassian.confluence.personal_token
511513
prompts: 0
512514
resources: {}
513515
config:

prompts/mcp/atlassian.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ mcp:
44
image: mcp/atlassian:latest
55
workdir: /app
66
secrets:
7-
atlassian.jira.token: JIRA_API_TOKEN
8-
atlassian.confluence.token: CONFLUENCE_API_TOKEN
7+
atlassian.jira.api_token: JIRA_API_TOKEN
8+
atlassian.confluence.api_token: CONFLUENCE_API_TOKEN
9+
atlassian.jira.personal_token: JIRA_PERSONAL_TOKEN
10+
atlassian.confluence.personal_token: CONFLUENCE_PERSONAL_TOKEN
911
environment:
1012
CONFLUENCE_URL: "{{atlassian.confluence.url}}"
1113
CONFLUENCE_USERNAME: "{{atlassian.confluence.username}}"

prompts/mcp/readmes/atlassian.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,10 @@ Parameters|Type|Description
409409
"JIRA_API_TOKEN",
410410
"-e",
411411
"CONFLUENCE_API_TOKEN",
412+
"-e",
413+
"JIRA_PERSONAL_TOKEN",
414+
"-e",
415+
"CONFLUENCE_PERSONAL_TOKEN",
412416
"mcp/atlassian"
413417
],
414418
"env": {
@@ -417,7 +421,9 @@ Parameters|Type|Description
417421
"JIRA_URL": "https://your-company.atlassian.net",
418422
"JIRA_USERNAME": "[email protected]",
419423
"JIRA_API_TOKEN": "your_api_token",
420-
"CONFLUENCE_API_TOKEN": "your_api_token"
424+
"CONFLUENCE_API_TOKEN": "your_api_token",
425+
"JIRA_PERSONAL_TOKEN": "your_api_token",
426+
"CONFLUENCE_PERSONAL_TOKEN": "your_api_token"
421427
}
422428
}
423429
}

0 commit comments

Comments
 (0)