Skip to content
VS Code

doc extract api for VS Code

io.github.thestarboy9696/doc-extract-api

SchemaLock — paid extraction: JSON from docs via your schema, x402/USDC.

client:VS Code transport:stdio runtime:npm

Install doc extract api in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wallet-private-key",
      "description": "WALLET_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "doc-extract-api": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "doc-extract-api"
      ],
      "env": {
        "WALLET_PRIVATE_KEY": "${input:wallet-private-key}"
      }
    }
  }
}

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

doc extract api in other clients