Skip to content
VS Code

JsonFabrica for VS Code

io.github.ms-methos/jsonfabrica-mcp-server

Generate realistic, relational synthetic JSON test data from templates, via the JsonFabrica API.

client:VS Code transport:stdio runtime:npm

Install JsonFabrica in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jsonfabrica-api-key",
      "description": "JSONFABRICA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jsonfabrica-api-url",
      "description": "JSONFABRICA_API_URL",
      "password": true
    }
  ],
  "servers": {
    "jsonfabrica-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@jsonfabrica/mcp-server"
      ],
      "env": {
        "JSONFABRICA_API_KEY": "${input:jsonfabrica-api-key}",
        "JSONFABRICA_API_URL": "${input:jsonfabrica-api-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

JsonFabrica in other clients