Skip to content
VS Code

Identity Forge for VS Code

io.identityforge/mcp

Design kits, brand naming, and domain research for coding agents.

client:VS Code transport:stdio runtime:npm

Install Identity Forge in VS Code

.vscode/mcp.json

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

Identity Forge in other clients