Skip to content

Financial Modeling Prep MCP Server for VS Code

io.github.imbenrabi/financial-modeling-prep-mcp-server

MCP server for Financial Modeling Prep API with 250+ financial data tools

client:VS Code transport:stdio runtime:npm

Install Financial Modeling Prep MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fmp-access-token",
      "description": "FMP_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dynamic-tool-discovery",
      "description": "DYNAMIC_TOOL_DISCOVERY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fmp-tool-sets",
      "description": "FMP_TOOL_SETS",
      "password": true
    }
  ],
  "servers": {
    "financial-modeling-prep-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "financial-modeling-prep-mcp-server"
      ],
      "env": {
        "FMP_ACCESS_TOKEN": "${input:fmp-access-token}",
        "PORT": "${input:port}",
        "DYNAMIC_TOOL_DISCOVERY": "${input:dynamic-tool-discovery}",
        "FMP_TOOL_SETS": "${input:fmp-tool-sets}"
      }
    }
  }
}

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 MCP Server in other clients