investra ai mcp for VS Code
io.github.perkinsandre/investra-ai-mcp
Real estate investment intelligence: search, comps, cash flow, off-market leads, skip trace.
client:VS Code
transport:stdio
runtime:npm
Install investra ai mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "investra-api-key",
"description": "INVESTRA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "investra-api-url",
"description": "INVESTRA_API_URL",
"password": true
}
],
"servers": {
"investra-ai-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"investra-ai-mcp"
],
"env": {
"INVESTRA_API_KEY": "${input:investra-api-key}",
"INVESTRA_API_URL": "${input:investra-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