veritasgraph for VS Code
io.github.bibinprathap/veritasgraph
Zero-trust, air-gapped Enterprise GraphRAG MCP server with offline, citation-grounded answers.
client:VS Code
transport:stdio
runtime:pypi
Install veritasgraph in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "veritasgraph-model",
"description": "VERITASGRAPH_MODEL",
"password": true
},
{
"type": "promptString",
"id": "ollama-host",
"description": "OLLAMA_HOST",
"password": true
},
{
"type": "promptString",
"id": "studio-data-dir",
"description": "STUDIO_DATA_DIR",
"password": true
}
],
"servers": {
"veritasgraph": {
"type": "stdio",
"command": "uvx",
"args": [
"veritasgraph-mcp"
],
"env": {
"VERITASGRAPH_MODEL": "${input:veritasgraph-model}",
"OLLAMA_HOST": "${input:ollama-host}",
"STUDIO_DATA_DIR": "${input:studio-data-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs