vectora for VS Code
io.github.brunosrz/vectora
AI assistant with RAG, web search, filesystem and memory. MCP sub-agent for Claude Code.
client:VS Code
transport:stdio
runtime:pypi
Install vectora in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-api-key",
"description": "GOOGLE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "cohere-api-key",
"description": "COHERE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "tavily-api-key",
"description": "TAVILY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "langsmith-api-key",
"description": "LANGSMITH_API_KEY",
"password": true
}
],
"servers": {
"vectora": {
"type": "stdio",
"command": "uvx",
"args": [
"vectora-agent"
],
"env": {
"GOOGLE_API_KEY": "${input:google-api-key}",
"COHERE_API_KEY": "${input:cohere-api-key}",
"TAVILY_API_KEY": "${input:tavily-api-key}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"LANGSMITH_API_KEY": "${input:langsmith-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