perspectives for VS Code
io.github.backspacevenkat/perspectives
Query GPT 5.2, Claude Opus 4.5, Gemini 3, Grok 4.1 simultaneously for AI perspectives
client:VS Code
transport:stdio
runtime:npm
Install perspectives in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "polydev-user-token",
"description": "POLYDEV_USER_TOKEN",
"password": true
}
],
"servers": {
"perspectives": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"polydev-ai"
],
"env": {
"POLYDEV_USER_TOKEN": "${input:polydev-user-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs