SQAI — deterministic, read-only structured data for VS Code
io.github.thyn-ai/sqai
SQAI MCP server — three governed, deterministic, read-only data tools. Free login to execute.
client:VS Code
transport:stdio
runtime:npm
Install SQAI — deterministic, read-only structured data in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sqai-api-key",
"description": "SQAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sqai-deployment-url",
"description": "SQAI_DEPLOYMENT_URL",
"password": true
},
{
"type": "promptString",
"id": "sqai-sources",
"description": "SQAI_SOURCES",
"password": true
}
],
"servers": {
"sqai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@thyn-ai/sqai-mcp"
],
"env": {
"SQAI_API_KEY": "${input:sqai-api-key}",
"SQAI_DEPLOYMENT_URL": "${input:sqai-deployment-url}",
"SQAI_SOURCES": "${input:sqai-sources}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs