qlows mcp for VS Code
io.github.getqlows/qlows-mcp
Find Tenders in 35 Countries of the WTO-GPA Zone and ground your AI for your RFP responses
client:VS Code
transport:stdio
runtime:npm
Install qlows mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "qlows-token",
"description": "QLOWS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "qlows-base-url",
"description": "QLOWS_BASE_URL",
"password": true
}
],
"servers": {
"qlows-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@qlows/mcp"
],
"env": {
"QLOWS_TOKEN": "${input:qlows-token}",
"QLOWS_BASE_URL": "${input:qlows-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs