Skip to content
VS Code

Schematic for VS Code

io.github.schematichq/schematic-mcp

Manage companies, plans, features, and billing through SchematicHQ

client:VS Code transport:stdio runtime:npm

Install Schematic in VS Code

.vscode/mcp.json

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

Schematic in other clients