squad up for VS Code
io.github.hrandhawa02/squad_up
Create events, add invitees, manage potlucks and carpools via natural language.
client:VS Code
transport:stdio
runtime:pypi
Install squad up in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "squad-up-api-url",
"description": "SQUAD_UP_API_URL",
"password": true
}
],
"servers": {
"squad_up": {
"type": "stdio",
"command": "uvx",
"args": [
"squad-up-mcp"
],
"env": {
"SQUAD_UP_API_URL": "${input:squad-up-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