Shelter for VS Code
io.github.nextauralabs/shelter
Connect AI agents to scoped financial context from your own Shelter account
client:VS Code
transport:stdio
runtime:npm
Install Shelter in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shelter-api-key",
"description": "SHELTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "shelter-api-url",
"description": "SHELTER_API_URL",
"password": true
}
],
"servers": {
"shelter": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@shelter.money/mcp"
],
"env": {
"SHELTER_API_KEY": "${input:shelter-api-key}",
"SHELTER_API_URL": "${input:shelter-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