SourceWeave Web Search for VS Code
io.github.mrnaqa/sourceweave-web-search
Fully local MCP server and CLI for web research
client:VS Code
transport:stdio
runtime:pypi
Install SourceWeave Web Search in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sourceweave-search-searxng-base-url",
"description": "SOURCEWEAVE_SEARCH_SEARXNG_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "sourceweave-search-crawl4ai-base-url",
"description": "SOURCEWEAVE_SEARCH_CRAWL4AI_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "sourceweave-search-cache-redis-url",
"description": "SOURCEWEAVE_SEARCH_CACHE_REDIS_URL",
"password": true
}
],
"servers": {
"sourceweave-web-search": {
"type": "stdio",
"command": "uvx",
"args": [
"sourceweave-web-search"
],
"env": {
"SOURCEWEAVE_SEARCH_SEARXNG_BASE_URL": "${input:sourceweave-search-searxng-base-url}",
"SOURCEWEAVE_SEARCH_CRAWL4AI_BASE_URL": "${input:sourceweave-search-crawl4ai-base-url}",
"SOURCEWEAVE_SEARCH_CACHE_REDIS_URL": "${input:sourceweave-search-cache-redis-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs