Skip to content
VS Code

scribe for VS Code

com.writulos/scribe

Generate clean markdown documentation for your code — one file, or up to 20 in one batch.

client:VS Code transport:stdio runtime:npm

Install scribe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "writulos-api-key",
      "description": "WRITULOS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "writulos-output-dir",
      "description": "WRITULOS_OUTPUT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "writulos-project-root",
      "description": "WRITULOS_PROJECT_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "writulos-api-url",
      "description": "WRITULOS_API_URL",
      "password": true
    }
  ],
  "servers": {
    "scribe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "writulos-mcp"
      ],
      "env": {
        "WRITULOS_API_KEY": "${input:writulos-api-key}",
        "WRITULOS_OUTPUT_DIR": "${input:writulos-output-dir}",
        "WRITULOS_PROJECT_ROOT": "${input:writulos-project-root}",
        "WRITULOS_API_URL": "${input:writulos-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

scribe in other clients