PluginBench
MCP Server
Active
MIT

io.github.SPAZIO-GENESI/attest-mcp MCP Server

io.github.SPAZIO-GENESI/attest-mcp

What is the io.github.SPAZIO-GENESI/attest-mcp MCP server?

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

How to install io.github.SPAZIO-GENESI/attest-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • IMGAUTH_API_KEY
    secret

    API key credential for the attestation service (optional — bypasses the interactive device-flow authorization).

  • IMGAUTH_BASE_URL

    Override the API base URL, e.g. for local development against a `wrangler dev` instance.

  • IMGAUTH_CERT_PAGE_BASE

    Override the base URL used to build permanent certificate-verification page links.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "attest-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@spazio-genesi/attest-mcp"
      ],
      "env": {
        "IMGAUTH_API_KEY": "<YOUR_IMGAUTH_API_KEY>",
        "IMGAUTH_BASE_URL": "<YOUR_IMGAUTH_BASE_URL>",
        "IMGAUTH_CERT_PAGE_BASE": "<YOUR_IMGAUTH_CERT_PAGE_BASE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "attest-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@spazio-genesi/attest-mcp"
      ],
      "env": {
        "IMGAUTH_API_KEY": "<YOUR_IMGAUTH_API_KEY>",
        "IMGAUTH_BASE_URL": "<YOUR_IMGAUTH_BASE_URL>",
        "IMGAUTH_CERT_PAGE_BASE": "<YOUR_IMGAUTH_CERT_PAGE_BASE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "attest-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@spazio-genesi/attest-mcp"
      ],
      "env": {
        "IMGAUTH_API_KEY": "<YOUR_IMGAUTH_API_KEY>",
        "IMGAUTH_BASE_URL": "<YOUR_IMGAUTH_BASE_URL>",
        "IMGAUTH_CERT_PAGE_BASE": "<YOUR_IMGAUTH_CERT_PAGE_BASE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "attest-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@spazio-genesi/attest-mcp"
      ],
      "env": {
        "IMGAUTH_API_KEY": "<YOUR_IMGAUTH_API_KEY>",
        "IMGAUTH_BASE_URL": "<YOUR_IMGAUTH_BASE_URL>",
        "IMGAUTH_CERT_PAGE_BASE": "<YOUR_IMGAUTH_CERT_PAGE_BASE>"
      }
    }
  }
}
Claude Code
claude mcp add attest-mcp --env IMGAUTH_API_KEY=<YOUR_IMGAUTH_API_KEY> --env IMGAUTH_BASE_URL=<YOUR_IMGAUTH_BASE_URL> --env IMGAUTH_CERT_PAGE_BASE=<YOUR_IMGAUTH_CERT_PAGE_BASE> -- npx -y @spazio-genesi/attest-mcp

Related MCP servers

Zero-install remote MCP server for proof-of-existence file attestation.

0
JavaScript
MIT
View repository →