Vexor for VS Code
io.github.scarletkc/vexor
A semantic search engine for files and code.
client:VS Code
transport:stdio
runtime:pypi
Install Vexor in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vexor-api-key",
"description": "VEXOR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vexor-remote-rerank-api-key",
"description": "VEXOR_REMOTE_RERANK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vexor-config-json",
"description": "VEXOR_CONFIG_JSON",
"password": true
}
],
"servers": {
"vexor": {
"type": "stdio",
"command": "uvx",
"args": [
"vexor"
],
"env": {
"VEXOR_API_KEY": "${input:vexor-api-key}",
"VEXOR_REMOTE_RERANK_API_KEY": "${input:vexor-remote-rerank-api-key}",
"VEXOR_CONFIG_JSON": "${input:vexor-config-json}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs