ConvergeQA Reviews (Critique & Iterate) for VS Code
io.github.convergeqa/reviews
Multi-model Critique and Iterate document reviews with public verification receipts.
client:VS Code
transport:stdio
runtime:pypi
Install ConvergeQA Reviews (Critique & Iterate) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "convergeqa-api-key",
"description": "CONVERGEQA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "convergeqa-service-account-key",
"description": "CONVERGEQA_SERVICE_ACCOUNT_KEY",
"password": true
}
],
"servers": {
"reviews": {
"type": "stdio",
"command": "uvx",
"args": [
"convergeqa-mcp"
],
"env": {
"CONVERGEQA_API_KEY": "${input:convergeqa-api-key}",
"CONVERGEQA_SERVICE_ACCOUNT_KEY": "${input:convergeqa-service-account-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs