junai Pipeline MCP for VS Code
io.github.saajunaid/junai-mcp
Agentic pipeline orchestration MCP server for AI-driven development workflows.
client:VS Code
transport:stdio
runtime:pypi
Install junai Pipeline MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pipeline-state-path",
"description": "PIPELINE_STATE_PATH",
"password": true
},
{
"type": "promptString",
"id": "junai-workspace-root",
"description": "JUNAI_WORKSPACE_ROOT",
"password": true
}
],
"servers": {
"junai-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"junai-mcp"
],
"env": {
"PIPELINE_STATE_PATH": "${input:pipeline-state-path}",
"JUNAI_WORKSPACE_ROOT": "${input:junai-workspace-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs