Skip to content
VS Code

modelforge for VS Code

io.github.whatsonyourmind/modelforge

Bulge-tier financial model factory — live formulas, source-traced cells, 14 templates.

client:VS Code transport:stdio runtime:pypi

Install modelforge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "modelforge": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "modelforge-finance"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-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

modelforge in other clients