rideshare comparison for VS Code
io.github.wmarceau/rideshare-comparison
Compare Uber and Lyft prices for any route
client:VS Code
transport:stdio
runtime:pypi
Install rideshare comparison in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rideshare-api-url",
"description": "RIDESHARE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "rideshare-api-key",
"description": "RIDESHARE_API_KEY",
"password": true
}
],
"servers": {
"rideshare-comparison": {
"type": "stdio",
"command": "uvx",
"args": [
"rideshare-comparison-mcp"
],
"env": {
"RIDESHARE_API_URL": "${input:rideshare-api-url}",
"RIDESHARE_API_KEY": "${input:rideshare-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