logi for VS Code
dev.1pass/logi
logi (1pass) IdP — manage your OAuth apps, redirect URIs, passkeys, login history and docs.
client:VS Code
transport:stdio
runtime:npm
Install logi in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "logi-api-key",
"description": "LOGI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "logi-api-url",
"description": "LOGI_API_URL",
"password": true
}
],
"servers": {
"logi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@1pass/mcp"
],
"env": {
"LOGI_API_KEY": "${input:logi-api-key}",
"LOGI_API_URL": "${input:logi-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs