jira-mini-mcp for VS Code
io.github.proprock/jira-mini-mcp
Minimal Jira Cloud MCP server: broad reads, a narrow 3-tool write surface, optional read-only mode.
client:VS Code
transport:stdio
runtime:pypi
Install jira-mini-mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jira-base-url",
"description": "JIRA_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "jira-auth-method",
"description": "JIRA_AUTH_METHOD",
"password": true
},
{
"type": "promptString",
"id": "jira-email",
"description": "JIRA_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "jira-api-token",
"description": "JIRA_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "jira-oauth-client-id",
"description": "JIRA_OAUTH_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "jira-oauth-client-secret",
"description": "JIRA_OAUTH_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "read-only-mode",
"description": "READ_ONLY_MODE",
"password": true
},
{
"type": "promptString",
"id": "structured-output",
"description": "STRUCTURED_OUTPUT",
"password": true
},
{
"type": "promptString",
"id": "disable-structured-output",
"description": "DISABLE_STRUCTURED_OUTPUT",
"password": true
}
],
"servers": {
"jira-mini-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"jira-mini-mcp"
],
"env": {
"JIRA_BASE_URL": "${input:jira-base-url}",
"JIRA_AUTH_METHOD": "${input:jira-auth-method}",
"JIRA_EMAIL": "${input:jira-email}",
"JIRA_API_TOKEN": "${input:jira-api-token}",
"JIRA_OAUTH_CLIENT_ID": "${input:jira-oauth-client-id}",
"JIRA_OAUTH_CLIENT_SECRET": "${input:jira-oauth-client-secret}",
"READ_ONLY_MODE": "${input:read-only-mode}",
"STRUCTURED_OUTPUT": "${input:structured-output}",
"DISABLE_STRUCTURED_OUTPUT": "${input:disable-structured-output}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs