Skip to content
VS Code

Neural Draft for VS Code

io.github.vbalagovic/neuraldraft-mcp

Neural Draft MCP — CMS, blog, bookings, galleries, commerce. 38 tools.

client:VS Code transport:stdio runtime:npm

Install Neural Draft in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "neuraldraft-api-key",
      "description": "NEURALDRAFT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "neuraldraft-api-url",
      "description": "NEURALDRAFT_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "neuraldraft-project-id",
      "description": "NEURALDRAFT_PROJECT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "neuraldraft-display-name",
      "description": "NEURALDRAFT_DISPLAY_NAME",
      "password": true
    }
  ],
  "servers": {
    "neuraldraft-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@neuraldraft/mcp"
      ],
      "env": {
        "NEURALDRAFT_API_KEY": "${input:neuraldraft-api-key}",
        "NEURALDRAFT_API_URL": "${input:neuraldraft-api-url}",
        "NEURALDRAFT_PROJECT_ID": "${input:neuraldraft-project-id}",
        "NEURALDRAFT_DISPLAY_NAME": "${input:neuraldraft-display-name}"
      }
    }
  }
}

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

Neural Draft in other clients