local leads mcp for VS Code
io.github.raffaele86/local-leads-mcp
Find local businesses with no website via OpenStreetMap, then verify them. No API keys needed.
client:VS Code
transport:stdio
runtime:pypi
Install local leads mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "brave-api-key",
"description": "BRAVE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "google-cse-api-key",
"description": "GOOGLE_CSE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "google-cse-cx",
"description": "GOOGLE_CSE_CX",
"password": true
},
{
"type": "promptString",
"id": "pagespeed-api-key",
"description": "PAGESPEED_API_KEY",
"password": true
}
],
"servers": {
"local-leads-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"local-leads-mcp"
],
"env": {
"BRAVE_API_KEY": "${input:brave-api-key}",
"GOOGLE_CSE_API_KEY": "${input:google-cse-api-key}",
"GOOGLE_CSE_CX": "${input:google-cse-cx}",
"PAGESPEED_API_KEY": "${input:pagespeed-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