mcp for VS Code
com.ithura/mcp
Manage tasks, sprints, projects, and wiki pages in your Ithura workspace.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ithura-api-key",
"description": "ITHURA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ithura-workspace-slug",
"description": "ITHURA_WORKSPACE_SLUG",
"password": true
},
{
"type": "promptString",
"id": "ithura-api-url",
"description": "ITHURA_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ithura-mcp"
],
"env": {
"ITHURA_API_KEY": "${input:ithura-api-key}",
"ITHURA_WORKSPACE_SLUG": "${input:ithura-workspace-slug}",
"ITHURA_API_URL": "${input:ithura-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs