Skip to content
VS Code

Financial Modeling Prep (fmpsdk) for VS Code

io.github.daxm/fmpsdk-mcp

Financial Modeling Prep API as MCP tools — quotes, statements, prices, and ~240 endpoints.

client:VS Code transport:stdio runtime:pypi

Install Financial Modeling Prep (fmpsdk) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fmp-api-key",
      "description": "FMP_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "fmpsdk-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fmpsdk-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

Financial Modeling Prep (fmpsdk) in other clients