MCP Hub
Back to servers

vtimestamp-mcp

Enables AI agents to verify document timestamps and list all recorded proofs on the Verus blockchain using a VerusID. It queries public Verus RPC endpoints to facilitate hash verification without requiring API keys or authentication.

Updated
Feb 27, 2026

vtimestamp-mcp

MCP server for verifying and querying vtimestamp proofs on the Verus blockchain.

Enables AI agents (Claude Desktop, VS Code, etc.) to verify document timestamps and list all timestamps on a VerusID — directly from the blockchain.

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "vtimestamp": {
      "command": "npx",
      "args": ["-y", "vtimestamp-mcp"]
    }
  }
}

Using yarn:

{
  "mcpServers": {
    "vtimestamp": {
      "command": "yarn",
      "args": ["dlx", "vtimestamp-mcp"]
    }
  }
}

Using pnpm:

{
  "mcpServers": {
    "vtimestamp": {
      "command": "pnpm",
      "args": ["dlx", "vtimestamp-mcp"]
    }
  }
}

VS Code

Add to your VS Code MCP settings:

{
  "mcp": {
    "servers": {
      "vtimestamp": {
        "command": "npx",
        "args": ["-y", "vtimestamp-mcp"]
      }
    }
  }
}

Tools

vtimestamp_verify

Verify whether a document hash has been timestamped on a VerusID.

ParameterTypeRequiredDescription
identitystringYesVerusID name (e.g., alice@)
hashstringYesSHA-256 hash (64-character hex string)
networkstringNomainnet (default) or testnet

Example: "Can you check if my document has been timestamped? My VerusID is alice@ and the hash is a7f3b2c1..."

vtimestamp_list

List all timestamps recorded on a VerusID.

ParameterTypeRequiredDescription
identitystringYesVerusID name (e.g., alice@)
networkstringNomainnet (default) or testnet

Example: "What documents has alice@ timestamped?"

vtimestamp_info

Get information about the vtimestamp service.

No parameters.

Example: "What is vtimestamp?"

How It Works

The server queries the public Verus RPC endpoints to read on-chain data. No wallet interaction, no API keys, no authentication required.

AI Agent (Claude Desktop, VS Code, etc.)
    │ stdio (JSON-RPC)
    ▼
vtimestamp-mcp (local)
    │ HTTPS (JSON-RPC 1.0)
    ▼
Verus Public RPC
    ├── mainnet: api.verus.services
    └── testnet: api.verustest.net

Requirements

  • Node.js 18+

License

MIT

Reviews

No reviews yet

Sign in to write a review