Groundlink for VS Code
io.github.ohhavefun/groundlink
Cited web search for MCP hosts. Returns source-bearing results from Groundlink.
client:VS Code
transport:stdio
runtime:npm
Install Groundlink in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "groundlink-api-key",
"description": "GROUNDLINK_API_KEY",
"password": true
}
],
"servers": {
"groundlink": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"groundlink-mcp"
],
"env": {
"GROUNDLINK_API_KEY": "${input:groundlink-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