Homecastr MCP for VS Code
io.github.dhardestylewis/homecastr
U.S. property forecasts, public benchmarks, and permit or environmental context through MCP.
client:VS Code
transport:stdio
runtime:npm
Install Homecastr MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "homecastr-api-key",
"description": "HOMECASTR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "homecastr-api-url",
"description": "HOMECASTR_API_URL",
"password": true
},
{
"type": "promptString",
"id": "worldcastr-api-key",
"description": "WORLDCASTR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "worldcastr-api-url",
"description": "WORLDCASTR_API_URL",
"password": true
}
],
"servers": {
"homecastr": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"homecastr-mcp-server"
],
"env": {
"HOMECASTR_API_KEY": "${input:homecastr-api-key}",
"HOMECASTR_API_URL": "${input:homecastr-api-url}",
"WORLDCASTR_API_KEY": "${input:worldcastr-api-key}",
"WORLDCASTR_API_URL": "${input:worldcastr-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