Skip to content
VS Code

deckprobe for VS Code

io.github.deckflow/deckprobe

Inspect PDF, Office, and iWork documents without rendering: counts, metadata, security signals

client:VS Code transport:stdio runtime:npm

Install deckprobe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "deckprobe-mcp-roots",
      "description": "DECKPROBE_MCP_ROOTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deckprobe-mcp-timeout-ms",
      "description": "DECKPROBE_MCP_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deckprobe-mcp-max-concurrency",
      "description": "DECKPROBE_MCP_MAX_CONCURRENCY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deckprobe-mcp-max-batch",
      "description": "DECKPROBE_MCP_MAX_BATCH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deckprobe-mcp-bin",
      "description": "DECKPROBE_MCP_BIN",
      "password": true
    }
  ],
  "servers": {
    "deckprobe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@deckflow/deckprobe-mcp"
      ],
      "env": {
        "DECKPROBE_MCP_ROOTS": "${input:deckprobe-mcp-roots}",
        "DECKPROBE_MCP_TIMEOUT_MS": "${input:deckprobe-mcp-timeout-ms}",
        "DECKPROBE_MCP_MAX_CONCURRENCY": "${input:deckprobe-mcp-max-concurrency}",
        "DECKPROBE_MCP_MAX_BATCH": "${input:deckprobe-mcp-max-batch}",
        "DECKPROBE_MCP_BIN": "${input:deckprobe-mcp-bin}"
      }
    }
  }
}

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

deckprobe in other clients