optifeed radar for VS Code
io.github.optifeed/optifeed-radar
AI visibility checker: does AI recommend your brand? GEO/AEO, runs locally, BYO keys. CLI + MCP.
client:VS Code
transport:stdio
runtime:npm
Install optifeed radar in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "google-api-key",
"description": "GOOGLE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "perplexity-api-key",
"description": "PERPLEXITY_API_KEY",
"password": true
}
],
"servers": {
"optifeed-radar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"optifeed-radar"
],
"env": {
"OPENAI_API_KEY": "${input:openai-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"GOOGLE_API_KEY": "${input:google-api-key}",
"PERPLEXITY_API_KEY": "${input:perplexity-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