contextual mcp server for VS Code
io.github.nitishgourishetty/contextual-mcp-server
RAG-enabled MCP server using Contextual AI. Supports single-agent and multi-agent modes.
client:VS Code
transport:stdio
runtime:pypi
Install contextual mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "api-key",
"description": "API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agent-id",
"description": "AGENT_ID",
"password": true
}
],
"servers": {
"contextual-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"contextual-mcp-server"
],
"env": {
"API_KEY": "${input:api-key}",
"AGENT_ID": "${input:agent-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs