Skip to content
VS Code

fmp for VS Code

io.github.houtini-ai/fmp

Access financial data and market information via Financial Modeling Prep API

client:VS Code transport:stdio runtime:npm

Install fmp in VS Code

.vscode/mcp.json

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

fmp in other clients