Skip to content
VS Code

Document corpus for VS Code

io.github.jorgell23-sys/mdcx

Query a verified document collection: passages that answer a question, with their source.

client:VS Code transport:stdio runtime:pypi

Install Document corpus in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mdcx-file",
      "description": "MDCX_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mdcx-key",
      "description": "MDCX_KEY",
      "password": true
    }
  ],
  "servers": {
    "mdcx": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mdcx"
      ],
      "env": {
        "MDCX_FILE": "${input:mdcx-file}",
        "MDCX_KEY": "${input:mdcx-key}"
      }
    }
  }
}

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

Document corpus in other clients