Skip to content
VS Code

Seedfast for VS Code

st.seedfa/seedfast

Generates relationally valid test data in a PostgreSQL database from its live schema.

client:VS Code transport:stdio runtime:npm

Install Seedfast in VS Code

.vscode/mcp.json

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

Seedfast in other clients