Skip to content
VS Code

vtimestamp write for VS Code

io.github.vdappdev2/vtimestamp-write

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

client:VS Code transport:stdio runtime:npm

Install vtimestamp write in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "verus-rpc-url",
      "description": "VERUS_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verus-rpc-user",
      "description": "VERUS_RPC_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verus-rpc-password",
      "description": "VERUS_RPC_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verus-network",
      "description": "VERUS_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "vtimestamp-write": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vtimestamp-mcp-write"
      ],
      "env": {
        "VERUS_RPC_URL": "${input:verus-rpc-url}",
        "VERUS_RPC_USER": "${input:verus-rpc-user}",
        "VERUS_RPC_PASSWORD": "${input:verus-rpc-password}",
        "VERUS_NETWORK": "${input:verus-network}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

vtimestamp write in other clients