Skip to content
VS Code

vouch mcp for VS Code

io.github.vouch-protocol/vouch-mcp

Sign and verify W3C Verifiable Credentials so AI agents can cryptographically authorize actions.

client:VS Code transport:stdio runtime:pypi

Install vouch mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vouch-private-key",
      "description": "VOUCH_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vouch-did",
      "description": "VOUCH_DID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vouch-mcp-transport",
      "description": "VOUCH_MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vouch-mcp-host",
      "description": "VOUCH_MCP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vouch-mcp-port",
      "description": "VOUCH_MCP_PORT",
      "password": true
    }
  ],
  "servers": {
    "vouch-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "vouch-mcp"
      ],
      "env": {
        "VOUCH_PRIVATE_KEY": "${input:vouch-private-key}",
        "VOUCH_DID": "${input:vouch-did}",
        "VOUCH_MCP_TRANSPORT": "${input:vouch-mcp-transport}",
        "VOUCH_MCP_HOST": "${input:vouch-mcp-host}",
        "VOUCH_MCP_PORT": "${input:vouch-mcp-port}"
      }
    }
  }
}

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

vouch mcp in other clients