DocQA MCP for VS Code
com.agentsconsultants.api/docqa
AI document verification: catch hallucinations, arithmetic errors, and field mismatches.
client:VS Code
transport:stdio
runtime:npm
Install DocQA MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "docqa-api-key",
"description": "DOCQA_API_KEY",
"password": true
}
],
"servers": {
"docqa": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"docqa-mcp"
],
"env": {
"DOCQA_API_KEY": "${input:docqa-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs