gopher for VS Code
io.github.courtimusprime/gopher
Lead intelligence layer for AI agents. Discover and enrich B2B prospects from natural language.
client:VS Code
transport:stdio
runtime:npm
Install gopher in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gopher-api-key",
"description": "GOPHER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gopher-api-base-url",
"description": "GOPHER_API_BASE_URL",
"password": true
}
],
"servers": {
"gopher": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"gopher-mcp"
],
"env": {
"GOPHER_API_KEY": "${input:gopher-api-key}",
"GOPHER_API_BASE_URL": "${input:gopher-api-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs