Skip to content
VS Code

chartforge for VS Code

io.github.crawde/chartforge

MCP server for ChartForge — generate stunning charts and diagrams from natural language

client:VS Code transport:stdio runtime:npm

Install chartforge in VS Code

.vscode/mcp.json

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

chartforge in other clients