AgentHubAgentHub

mcp-server

MCP ServerMCP Registry官方收录

io.github.azeth-protocol/mcp-server · v0.2.22

Smart accounts, x402 payments, on-chain reputation, and service discovery for AI agents

概览

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

安装

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

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

环境变量

AZETH_PRIVATE_KEY可选secret

Owner private key (0x-prefixed, 64 hex chars). Auto-generated and saved to ~/.azeth/key if not set.

AZETH_CHAIN可选

Target chain: base, baseSepolia, ethereum, ethereumSepolia (default: baseSepolia)

AZETH_GUARDIAN_KEY可选secret

Guardian co-signing private key for operations exceeding spending limits (optional)

AZETH_GUARDIAN_AUTO_SIGN可选

Set to 'true' to enable automatic guardian co-signing (requires AZETH_GUARDIAN_KEY)

AZETH_RPC_URL_BASE_SEPOLIA可选

Custom RPC for Base Sepolia (optional, defaults to public RPC). Per-chain: AZETH_RPC_URL_BASE, AZETH_RPC_URL_ETH_SEPOLIA, AZETH_RPC_URL_ETHEREUM

AZETH_SERVER_URL可选

Azeth server URL for off-chain operations like reputation queries (optional)

AZETH_EMERGENCY_ADDRESS可选

Emergency withdrawal destination address (defaults to owner EOA if not set)

XMTP_ENCRYPTION_KEY可选secret

XMTP database encryption key for persistent messaging (optional, enables agent-to-agent messaging)

相关资源

统一 Manifest

{
  "id": "io.github.azeth-protocol/mcp-server",
  "type": "mcp-server",
  "version": "0.2.22",
  "displayName": "mcp-server",
  "description": "Smart accounts, x402 payments, on-chain reputation, and service discovery for AI agents",
  "repository": {
    "url": "https://github.com/azeth-protocol/mcp-server",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@azeth/mcp-server",
        "version": "0.2.22",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AZETH_PRIVATE_KEY",
            "description": "Owner private key (0x-prefixed, 64 hex chars). Auto-generated and saved to ~/.azeth/key if not set.",
            "isSecret": true
          },
          {
            "name": "AZETH_CHAIN",
            "description": "Target chain: base, baseSepolia, ethereum, ethereumSepolia (default: baseSepolia)"
          },
          {
            "name": "AZETH_GUARDIAN_KEY",
            "description": "Guardian co-signing private key for operations exceeding spending limits (optional)",
            "isSecret": true
          },
          {
            "name": "AZETH_GUARDIAN_AUTO_SIGN",
            "description": "Set to 'true' to enable automatic guardian co-signing (requires AZETH_GUARDIAN_KEY)"
          },
          {
            "name": "AZETH_RPC_URL_BASE_SEPOLIA",
            "description": "Custom RPC for Base Sepolia (optional, defaults to public RPC). Per-chain: AZETH_RPC_URL_BASE, AZETH_RPC_URL_ETH_SEPOLIA, AZETH_RPC_URL_ETHEREUM"
          },
          {
            "name": "AZETH_SERVER_URL",
            "description": "Azeth server URL for off-chain operations like reputation queries (optional)"
          },
          {
            "name": "AZETH_EMERGENCY_ADDRESS",
            "description": "Emergency withdrawal destination address (defaults to owner EOA if not set)"
          },
          {
            "name": "XMTP_ENCRYPTION_KEY",
            "description": "XMTP database encryption key for persistent messaging (optional, enables agent-to-agent messaging)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.azeth-protocol/mcp-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.azeth-protocol%2Fmcp-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
mcp-server — MCP Server 安装与配置 · AgentHub