fabric mcp for VS Code
io.github.mpzarde/fabric-mcp
MCP server for Fabric AI patterns
client:VS Code
transport:stdio
runtime:npm
Install fabric mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fabric-path",
"description": "FABRIC_PATH",
"password": true
},
{
"type": "promptString",
"id": "ytdlp-path",
"description": "YTDLP_PATH",
"password": true
}
],
"servers": {
"fabric-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@angrydad67/fabric-mcp-server"
],
"env": {
"FABRIC_PATH": "${input:fabric-path}",
"YTDLP_PATH": "${input:ytdlp-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs