AgentHubAgentHub

AuthProof

MCP ServerMCP Registry官方收录

io.github.kaleckh/authproof · v0.3.0

Signed, non-replayable API auth. Agents self-register and sign requests with ERC-8128.

概览

AuthProof 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "authproof": {
      "command": "npx",
      "args": [
        "-y",
        "@authproof/mcp-server"
      ]
    }
  }
}

环境变量

AUTHPROOF_SERVER可选

AuthProof server URL

AGENT_PRIVATE_KEY可选

Agent wallet private key (hex)

AUTHPROOF_CHAIN_ID可选

Chain ID for signing

AUTHPROOF_RPC_URL可选

RPC URL for auto-payment

相关资源

统一 Manifest

{
  "id": "io.github.kaleckh/authproof",
  "type": "mcp-server",
  "version": "0.3.0",
  "displayName": "AuthProof",
  "description": "Signed, non-replayable API auth. Agents self-register and sign requests with ERC-8128.",
  "repository": {
    "url": "https://github.com/kaleckh/AgentAuth",
    "source": "github",
    "subfolder": "packages/mcp-server"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@authproof/mcp-server",
        "version": "0.3.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AUTHPROOF_SERVER",
            "description": "AuthProof server URL"
          },
          {
            "name": "AGENT_PRIVATE_KEY",
            "description": "Agent wallet private key (hex)"
          },
          {
            "name": "AUTHPROOF_CHAIN_ID",
            "description": "Chain ID for signing"
          },
          {
            "name": "AUTHPROOF_RPC_URL",
            "description": "RPC URL for auto-payment"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.kaleckh/authproof",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.kaleckh%2Fauthproof/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
AuthProof — MCP Server 安装与配置 · AgentHub