Skip to content

Commit cc1df1f

Browse files
committed
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
1 parent 0217546 commit cc1df1f

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

servers/community.jira.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.jira",
4+
"name": "Jira",
5+
"alias": "jira",
6+
"description": "Manage Jira issues, projects, sprints, and boards. Search issues with JQL, create and update tickets, and transition workflows.",
7+
"icon": "https://avatars.githubusercontent.com/u/4284487?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["productivity", "developer-tools"],
10+
"tags": ["jira", "atlassian", "issues", "project-management", "agile", "sprints"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@aashari/mcp-server-atlassian-jira"],
16+
"env": {
17+
"ATLASSIAN_SITE_NAME": "${input:ATLASSIAN_SITE_NAME}",
18+
"ATLASSIAN_USER_EMAIL": "${input:ATLASSIAN_USER_EMAIL}",
19+
"ATLASSIAN_API_TOKEN": "${input:ATLASSIAN_API_TOKEN}"
20+
},
21+
"metadata": {
22+
"inputs": [
23+
{
24+
"id": "ATLASSIAN_SITE_NAME",
25+
"label": "Atlassian Site Name",
26+
"description": "Your Atlassian site name (the subdomain in your-site.atlassian.net).",
27+
"type": "text",
28+
"required": true,
29+
"secret": false,
30+
"placeholder": "your-site"
31+
},
32+
{
33+
"id": "ATLASSIAN_USER_EMAIL",
34+
"label": "Atlassian User Email",
35+
"description": "Email address associated with your Atlassian account.",
36+
"type": "text",
37+
"required": true,
38+
"secret": false,
39+
"placeholder": "you@example.com"
40+
},
41+
{
42+
"id": "ATLASSIAN_API_TOKEN",
43+
"label": "Atlassian API Token",
44+
"description": "API token for Atlassian Cloud authentication.",
45+
"type": "password",
46+
"required": true,
47+
"secret": true,
48+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxx",
49+
"obtain": {
50+
"url": "https://id.atlassian.com/manage-profile/security/api-tokens",
51+
"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",
52+
"button_label": "Create API Token"
53+
}
54+
}
55+
]
56+
}
57+
},
58+
59+
"auth": {
60+
"type": "api_key",
61+
"instructions": "Create an API token at https://id.atlassian.com/manage-profile/security/api-tokens"
62+
},
63+
64+
"contributor": {
65+
"name": "aashari",
66+
"github": "aashari",
67+
"url": "https://github.com/aashari"
68+
},
69+
70+
"links": {
71+
"repository": "https://github.com/aashari/mcp-server-atlassian-jira",
72+
"homepage": "https://www.atlassian.com/software/jira",
73+
"documentation": "https://github.com/aashari/mcp-server-atlassian-jira#readme"
74+
},
75+
76+
"platforms": ["all"],
77+
78+
"capabilities": {
79+
"tools": true,
80+
"resources": false,
81+
"prompts": false,
82+
"read_only_mode": false
83+
}
84+
}

0 commit comments

Comments
 (0)