Skip to content
VS Code

attest mcp for VS Code

io.github.spazio-genesi/attest-mcp

Free proof-of-existence attestation for digital files, MCP tools for the imgauth service.

client:VS Code transport:stdio runtime:npm

Install attest mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "imgauth-api-key",
      "description": "IMGAUTH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "imgauth-base-url",
      "description": "IMGAUTH_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "imgauth-cert-page-base",
      "description": "IMGAUTH_CERT_PAGE_BASE",
      "password": true
    }
  ],
  "servers": {
    "attest-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@spazio-genesi/attest-mcp"
      ],
      "env": {
        "IMGAUTH_API_KEY": "${input:imgauth-api-key}",
        "IMGAUTH_BASE_URL": "${input:imgauth-base-url}",
        "IMGAUTH_CERT_PAGE_BASE": "${input:imgauth-cert-page-base}"
      }
    }
  }
}

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

attest mcp in other clients