onehome mcp for VS Code
io.github.chrischall/onehome-mcp
OneHome (CoreLogic) real-estate access for Claude — search, property details, photos, saved homes
client:VS Code
transport:stdio
runtime:npm
Install onehome mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "onehome-token",
"description": "ONEHOME_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "onehome-magic-link",
"description": "ONEHOME_MAGIC_LINK",
"password": true
},
{
"type": "promptString",
"id": "onehome-ws-port",
"description": "ONEHOME_WS_PORT",
"password": true
}
],
"servers": {
"onehome-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"onehome-mcp"
],
"env": {
"ONEHOME_TOKEN": "${input:onehome-token}",
"ONEHOME_MAGIC_LINK": "${input:onehome-magic-link}",
"ONEHOME_WS_PORT": "${input:onehome-ws-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs