rollin mcp server for VS Code
io.github.davidsirota/rollin-mcp-server
Wheelchair accessibility scores for 70,000+ US restaurants. Search, filter, and submit feedback.
client:VS Code
transport:stdio
runtime:npm
Install rollin mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rollin-api-key",
"description": "ROLLIN_API_KEY",
"password": true
}
],
"servers": {
"rollin-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"rollin-mcp-server"
],
"env": {
"ROLLIN_API_KEY": "${input:rollin-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