Jira Cloud for VS Code
io.github.aaronsb/jira-cloud
MCP server for Jira Cloud — manage issues, sprints, boards, filters, and custom fields
client:VS Code
transport:stdio
runtime:npm
Install Jira Cloud in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jira-api-token",
"description": "JIRA_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "jira-email",
"description": "JIRA_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "jira-host",
"description": "JIRA_HOST",
"password": true
}
],
"servers": {
"jira-cloud": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@aaronsb/jira-cloud-mcp"
],
"env": {
"JIRA_API_TOKEN": "${input:jira-api-token}",
"JIRA_EMAIL": "${input:jira-email}",
"JIRA_HOST": "${input:jira-host}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs