Skip to content
VS Code

Oracle Forms for VS Code

io.github.aoreshkov/oracle-forms-mcp

Serves Oracle Forms module content (.fmb/.mmb/.pll/.olb) from a directory to MCP clients.

client:VS Code transport:stdio runtime:oci

Install Oracle Forms in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ofmcp-converted-dir",
      "description": "OFMCP_CONVERTED_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ofmcp-convert-command",
      "description": "OFMCP_CONVERT_COMMAND",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ofmcp-compile-command",
      "description": "OFMCP_COMPILE_COMMAND",
      "password": true
    }
  ],
  "servers": {
    "oracle-forms-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/aoreshkov/oracle-forms-mcp:0.13.0"
      ],
      "env": {
        "OFMCP_CONVERTED_DIR": "${input:ofmcp-converted-dir}",
        "OFMCP_CONVERT_COMMAND": "${input:ofmcp-convert-command}",
        "OFMCP_COMPILE_COMMAND": "${input:ofmcp-compile-command}"
      }
    }
  }
}

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

Oracle Forms in other clients