Skip to content
VS Code

stream estate for VS Code

io.github.fullstck/stream-estate

MCP server for the Stream.estate French real estate API

client:VS Code transport:stdio runtime:npm

Install stream estate in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stream-estate-api-key",
      "description": "STREAM_ESTATE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "stream-estate": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-stream-estate"
      ],
      "env": {
        "STREAM_ESTATE_API_KEY": "${input:stream-estate-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

stream estate in other clients