Skip to content
VS Code

odgs mcp server for VS Code

com.metricprovenance/odgs-mcp-server

ODGS governance enforcement — validation, regulation compilation, drift detection, signed S-Certs.

client:VS Code transport:stdio runtime:pypi

Install odgs mcp server in VS Code

.vscode/mcp.json

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

odgs mcp server in other clients