deepcontext for VS Code
ai.wild-card/deepcontext
Advanced codebase indexing and semantic search MCP server
client:VS Code
transport:stdio
runtime:npm
Install deepcontext in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jina-api-key",
"description": "JINA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "turbopuffer-api-key",
"description": "TURBOPUFFER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "wildcard-api-key",
"description": "WILDCARD_API_KEY",
"password": true
}
],
"servers": {
"deepcontext": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@wildcard-ai/deepcontext"
],
"env": {
"JINA_API_KEY": "${input:jina-api-key}",
"TURBOPUFFER_API_KEY": "${input:turbopuffer-api-key}",
"WILDCARD_API_KEY": "${input:wildcard-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