Skip to content
VS Code

LayerOne (DocX + Sign) for VS Code

io.github.golayerone/layerone

MCP server for LayerOne DocX (documents & Factur-X) and Sign (e-signature) APIs.

client:VS Code transport:stdio runtime:npm

Install LayerOne (DocX + Sign) in VS Code

.vscode/mcp.json

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

LayerOne (DocX + Sign) in other clients