From cc1df1f24c2b50094ab8a7c244cb5d1c5a1eb5d8 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:21:11 +0000 Subject: [PATCH 1/4] Add Jira MCP server definition Community Jira MCP server for managing issues, projects, sprints, and boards. Search with JQL, create tickets, and manage workflows. Uses @aashari/mcp-server-atlassian-jira. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/community.jira.json | 84 +++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 servers/community.jira.json diff --git a/servers/community.jira.json b/servers/community.jira.json new file mode 100644 index 0000000..f367959 --- /dev/null +++ b/servers/community.jira.json @@ -0,0 +1,84 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.jira", + "name": "Jira", + "alias": "jira", + "description": "Manage Jira issues, projects, sprints, and boards. Search issues with JQL, create and update tickets, and transition workflows.", + "icon": "https://avatars.githubusercontent.com/u/4284487?v=4", + "schema_version": "2.1", + "categories": ["productivity", "developer-tools"], + "tags": ["jira", "atlassian", "issues", "project-management", "agile", "sprints"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@aashari/mcp-server-atlassian-jira"], + "env": { + "ATLASSIAN_SITE_NAME": "${input:ATLASSIAN_SITE_NAME}", + "ATLASSIAN_USER_EMAIL": "${input:ATLASSIAN_USER_EMAIL}", + "ATLASSIAN_API_TOKEN": "${input:ATLASSIAN_API_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "ATLASSIAN_SITE_NAME", + "label": "Atlassian Site Name", + "description": "Your Atlassian site name (the subdomain in your-site.atlassian.net).", + "type": "text", + "required": true, + "secret": false, + "placeholder": "your-site" + }, + { + "id": "ATLASSIAN_USER_EMAIL", + "label": "Atlassian User Email", + "description": "Email address associated with your Atlassian account.", + "type": "text", + "required": true, + "secret": false, + "placeholder": "you@example.com" + }, + { + "id": "ATLASSIAN_API_TOKEN", + "label": "Atlassian API Token", + "description": "API token for Atlassian Cloud authentication.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://id.atlassian.com/manage-profile/security/api-tokens", + "instructions": "1. Go to id.atlassian.com/manage-profile/security/api-tokens\n2. Click 'Create API token'\n3. Name your token and click 'Create'\n4. Copy the token", + "button_label": "Create API Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create an API token at https://id.atlassian.com/manage-profile/security/api-tokens" + }, + + "contributor": { + "name": "aashari", + "github": "aashari", + "url": "https://github.com/aashari" + }, + + "links": { + "repository": "https://github.com/aashari/mcp-server-atlassian-jira", + "homepage": "https://www.atlassian.com/software/jira", + "documentation": "https://github.com/aashari/mcp-server-atlassian-jira#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 0b43e541cf2f604df2307b9723d89d6d1d301553 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:28 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for ATLASSIAN_API_TOKEN) --- servers/community.jira.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/community.jira.json b/servers/community.jira.json index f367959..fa6c615 100644 --- a/servers/community.jira.json +++ b/servers/community.jira.json @@ -6,13 +6,25 @@ "description": "Manage Jira issues, projects, sprints, and boards. Search issues with JQL, create and update tickets, and transition workflows.", "icon": "https://avatars.githubusercontent.com/u/4284487?v=4", "schema_version": "2.1", - "categories": ["productivity", "developer-tools"], - "tags": ["jira", "atlassian", "issues", "project-management", "agile", "sprints"], - + "categories": [ + "productivity", + "developer-tools" + ], + "tags": [ + "jira", + "atlassian", + "issues", + "project-management", + "agile", + "sprints" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@aashari/mcp-server-atlassian-jira"], + "args": [ + "-y", + "@aashari/mcp-server-atlassian-jira" + ], "env": { "ATLASSIAN_SITE_NAME": "${input:ATLASSIAN_SITE_NAME}", "ATLASSIAN_USER_EMAIL": "${input:ATLASSIAN_USER_EMAIL}", @@ -42,7 +54,7 @@ "id": "ATLASSIAN_API_TOKEN", "label": "Atlassian API Token", "description": "API token for Atlassian Cloud authentication.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxx", @@ -55,26 +67,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create an API token at https://id.atlassian.com/manage-profile/security/api-tokens" }, - "contributor": { "name": "aashari", "github": "aashari", "url": "https://github.com/aashari" }, - "links": { "repository": "https://github.com/aashari/mcp-server-atlassian-jira", "homepage": "https://www.atlassian.com/software/jira", "documentation": "https://github.com/aashari/mcp-server-atlassian-jira#readme" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From d078527423fb73f4f23e7e589ffb5786b920b449 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:43 +0800 Subject: [PATCH 3/4] fix: rename server files with transport suffix - community.jira.json -> community.jira-npx.json (id: community.jira-npx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{community.jira.json => community.jira-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{community.jira.json => community.jira-npx.json} (98%) diff --git a/servers/community.jira.json b/servers/community.jira-npx.json similarity index 98% rename from servers/community.jira.json rename to servers/community.jira-npx.json index fa6c615..3d68b2e 100644 --- a/servers/community.jira.json +++ b/servers/community.jira-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.jira", - "name": "Jira", + "id": "community.jira-npx", + "name": "Jira (npx)", "alias": "jira", "description": "Manage Jira issues, projects, sprints, and boards. Search issues with JQL, create and update tickets, and transition workflows.", "icon": "https://avatars.githubusercontent.com/u/4284487?v=4", From 54be69709ab2f2eb73f59c7c1b830ec8b221599d Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:47:25 +0800 Subject: [PATCH 4/4] fix: use GitHub org as ID domain for community definitions - community.jira-npx -> aashari.jira-mcp-npx Signed-off-by: Mohammod Al Amin Ashik --- servers/{community.jira-npx.json => aashari.jira-mcp-npx.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename servers/{community.jira-npx.json => aashari.jira-mcp-npx.json} (98%) diff --git a/servers/community.jira-npx.json b/servers/aashari.jira-mcp-npx.json similarity index 98% rename from servers/community.jira-npx.json rename to servers/aashari.jira-mcp-npx.json index 3d68b2e..282e094 100644 --- a/servers/community.jira-npx.json +++ b/servers/aashari.jira-mcp-npx.json @@ -1,6 +1,6 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.jira-npx", + "id": "aashari.jira-mcp-npx", "name": "Jira (npx)", "alias": "jira", "description": "Manage Jira issues, projects, sprints, and boards. Search issues with JQL, create and update tickets, and transition workflows.",