mcp server for VS Code
io.github.vectros-ai/mcp-server
Typed record store + hybrid search over MCP: deterministic lookups + semantic memory, per-customer.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vectros-api-key",
"description": "VECTROS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vectros-keyring-alias",
"description": "VECTROS_KEYRING_ALIAS",
"password": true
},
{
"type": "promptString",
"id": "vectros-api-base-url",
"description": "VECTROS_API_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "vectros-mcp-tools",
"description": "VECTROS_MCP_TOOLS",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@vectros-ai/mcp-server"
],
"env": {
"VECTROS_API_KEY": "${input:vectros-api-key}",
"VECTROS_KEYRING_ALIAS": "${input:vectros-keyring-alias}",
"VECTROS_API_BASE_URL": "${input:vectros-api-base-url}",
"VECTROS_MCP_TOOLS": "${input:vectros-mcp-tools}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs