AgentHubAgentHub

vtimestamp-write

MCP ServerMCP Registry官方收录

io.github.vdappdev2/vtimestamp-write · v1.0.0

MCP server for creating vtimestamp proofs on the Verus blockchain via a local or remote daemon

概览

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

安装

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

{
  "mcpServers": {
    "vtimestamp-write": {
      "command": "npx",
      "args": [
        "-y",
        "vtimestamp-mcp-write"
      ],
      "env": {
        "VERUS_RPC_URL": "<VERUS_RPC_URL>"
      }
    }
  }
}

环境变量

VERUS_RPC_URL必填

Verus daemon RPC URL (e.g., http://127.0.0.1:27486)

VERUS_RPC_USER可选secret

RPC username from VRSC.conf

VERUS_RPC_PASSWORD可选secret

RPC password from VRSC.conf

VERUS_NETWORK可选

Network: mainnet (default) or testnet

相关资源

统一 Manifest

{
  "id": "io.github.vdappdev2/vtimestamp-write",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "vtimestamp-write",
  "description": "MCP server for creating vtimestamp proofs on the Verus blockchain via a local or remote daemon",
  "repository": {
    "url": "https://github.com/vdappdev2/vtimestamp-mcp-write",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "vtimestamp-mcp-write",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "VERUS_RPC_URL",
            "description": "Verus daemon RPC URL (e.g., http://127.0.0.1:27486)",
            "isRequired": true
          },
          {
            "name": "VERUS_RPC_USER",
            "description": "RPC username from VRSC.conf",
            "isSecret": true
          },
          {
            "name": "VERUS_RPC_PASSWORD",
            "description": "RPC password from VRSC.conf",
            "isSecret": true
          },
          {
            "name": "VERUS_NETWORK",
            "description": "Network: mainnet (default) or testnet"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.vdappdev2/vtimestamp-write",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.vdappdev2%2Fvtimestamp-write/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
vtimestamp-write — MCP Server 安装与配置 · AgentHub