YAP — Yet Another Packager for VS Code
io.github.m0rf30/yap
Build native Linux packages (.deb/.rpm/.apk/.pkg.tar.zst) from a single PKGBUILD via MCP.
client:VS Code
transport:stdio
runtime:oci
Install YAP — Yet Another Packager in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yap-verbose",
"description": "YAP_VERBOSE",
"password": true
}
],
"servers": {
"yap": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/m0rf30/yap-mcp:2.6.3"
],
"env": {
"YAP_VERBOSE": "${input:yap-verbose}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs