Skip to content
This repository was archived by the owner on Dec 29, 2025. It is now read-only.

Commit 894b476

Browse files
committed
Enable jira mcp server
1 parent e07ea01 commit 894b476

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

src/mcp/install-mcp-server.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,26 @@ export async function prepareMcpConfig(
8989
},
9090
};
9191

92+
// Enable atlassian MCP server
93+
baseMcpConfig.mcpServers.atlassian = {
94+
command: "docker",
95+
args: [
96+
"run",
97+
"-i",
98+
"--rm",
99+
"-e", `JIRA_URL=${process.env.JIRA_URL}`,
100+
"-e", `JIRA_USERNAME=${process.env.JIRA_USERNAME}`,
101+
"-e", `JIRA_API_TOKEN=${process.env.JIRA_API_TOKEN}`,
102+
"-e", "READ_ONLY_MODE=true",
103+
"-e", "MCP_VERBOSE=true",
104+
"ghcr.io/sooperset/mcp-atlassian:latest"
105+
],
106+
env: {
107+
READ_ONLY_MODE: "true",
108+
MCP_VERBOSE: "true",
109+
}
110+
};
111+
92112
// Include file ops server when commit signing is enabled
93113
if (context.inputs.useCommitSigning) {
94114
baseMcpConfig.mcpServers.github_file_ops = {

0 commit comments

Comments
 (0)