Skip to content

Commit 0b43e54

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for ATLASSIAN_API_TOKEN)
1 parent cc1df1f commit 0b43e54

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/community.jira.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Manage Jira issues, projects, sprints, and boards. Search issues with JQL, create and update tickets, and transition workflows.",
77
"icon": "https://avatars.githubusercontent.com/u/4284487?v=4",
88
"schema_version": "2.1",
9-
"categories": ["productivity", "developer-tools"],
10-
"tags": ["jira", "atlassian", "issues", "project-management", "agile", "sprints"],
11-
9+
"categories": [
10+
"productivity",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"jira",
15+
"atlassian",
16+
"issues",
17+
"project-management",
18+
"agile",
19+
"sprints"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@aashari/mcp-server-atlassian-jira"],
24+
"args": [
25+
"-y",
26+
"@aashari/mcp-server-atlassian-jira"
27+
],
1628
"env": {
1729
"ATLASSIAN_SITE_NAME": "${input:ATLASSIAN_SITE_NAME}",
1830
"ATLASSIAN_USER_EMAIL": "${input:ATLASSIAN_USER_EMAIL}",
@@ -42,7 +54,7 @@
4254
"id": "ATLASSIAN_API_TOKEN",
4355
"label": "Atlassian API Token",
4456
"description": "API token for Atlassian Cloud authentication.",
45-
"type": "password",
57+
"type": "text",
4658
"required": true,
4759
"secret": true,
4860
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxx",
@@ -55,26 +67,23 @@
5567
]
5668
}
5769
},
58-
5970
"auth": {
6071
"type": "api_key",
6172
"instructions": "Create an API token at https://id.atlassian.com/manage-profile/security/api-tokens"
6273
},
63-
6474
"contributor": {
6575
"name": "aashari",
6676
"github": "aashari",
6777
"url": "https://github.com/aashari"
6878
},
69-
7079
"links": {
7180
"repository": "https://github.com/aashari/mcp-server-atlassian-jira",
7281
"homepage": "https://www.atlassian.com/software/jira",
7382
"documentation": "https://github.com/aashari/mcp-server-atlassian-jira#readme"
7483
},
75-
76-
"platforms": ["all"],
77-
84+
"platforms": [
85+
"all"
86+
],
7887
"capabilities": {
7988
"tools": true,
8089
"resources": false,

0 commit comments

Comments
 (0)