Skip to content
VS Code

SpineFrame for VS Code

io.github.ratnaditya-j/spineframe

Governance runtime for AI agents with signed provenance, compliance audits, and OSINT.

client:VS Code transport:stdio runtime:pypi

Install SpineFrame in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spineframe-runs-dir",
      "description": "SPINEFRAME_RUNS_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spineframe-config",
      "description": "SPINEFRAME_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "spineframe": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "spineframe"
      ],
      "env": {
        "SPINEFRAME_RUNS_DIR": "${input:spineframe-runs-dir}",
        "SPINEFRAME_CONFIG": "${input:spineframe-config}"
      }
    }
  }
}

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

SpineFrame in other clients