Skip to content
VS Code

FlexOrch for VS Code

io.github.dev-flexorch/flexorch-mcp

Classify documents, extract structured fields, mask PII, export JSONL/RAG datasets for AI agents.

client:VS Code transport:stdio runtime:pypi

Install FlexOrch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "flexorch-api-key",
      "description": "FLEXORCH_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "flexorch-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "flexorch-mcp"
      ],
      "env": {
        "FLEXORCH_API_KEY": "${input:flexorch-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

FlexOrch in other clients