Skip to main content
Glama
vdappdev2

vtimestamp-mcp

vtimestamp_info

Learn how the vtimestamp service verifies document timestamps and lists proofs on the Verus blockchain using public RPC endpoints.

Instructions

Get information about the vtimestamp service — what it is, how it works, and supported features.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The vtimestamp_info tool handler, which returns information about the vtimestamp service.
    server.tool(
      'vtimestamp_info',
      'Get information about the vtimestamp service — what it is, how it works, and supported features.',
      {},
      async () => {
        return {
          content: [
            {
              type: 'text' as const,
              text: JSON.stringify(
                {
                  name: 'vtimestamp',
                  description:
                    'Decentralized document timestamping on the Verus blockchain. Creates cryptographic proof that a document existed at a specific point in time. Documents never leave the user\'s device — only a SHA-256 hash is stored on-chain, tied to the user\'s VerusID (a self-sovereign blockchain identity). Anyone can verify a timestamp without an account.',
                  website: 'https://vtimestamp.com',
                  github: 'https://github.com/vdappdev2/vtimestamp',
                  verification_url: 'https://vtimestamp.com/verify',
                  features: [
                    'Privacy-first: only hash stored, document never uploaded',
                    'Self-sovereign: timestamps stored on user\'s own VerusID',
                    'Permissionless verification: anyone can verify, no account needed',
                    'Structured metadata: title, description, filename stored on-chain',
                    'Identity-bound: proof answers both \'when\' and \'who\'',
                    'Immutable: blockchain timestamp cannot be changed or backdated',
                  ],
                },
                null,
                2
              ),
            },
          ],
        };
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vdappdev2/vtimestamp-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server