Skip to content
VS Code

XAPS MCP Server for VS Code

io.github.apmc1/xaps

Pre-execution audit for autonomous agents. Independent receipt before irreversible actions.

client:VS Code transport:stdio runtime:pypi

Install XAPS MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "xaps-agent-key",
      "description": "XAPS_AGENT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "xaps-api-url",
      "description": "XAPS_API_URL",
      "password": true
    }
  ],
  "servers": {
    "xaps": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "xaps-sdk"
      ],
      "env": {
        "XAPS_AGENT_KEY": "${input:xaps-agent-key}",
        "XAPS_API_URL": "${input:xaps-api-url}"
      }
    }
  }
}

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

XAPS MCP Server in other clients