-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
50 lines (50 loc) · 1.46 KB
/
server.json
File metadata and controls
50 lines (50 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.vdappdev2/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"
},
"version": "1.1.2",
"packages": [
{
"registryType": "npm",
"identifier": "vtimestamp-mcp-write",
"version": "1.1.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Path to VRSC.conf (auto-detected by default)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "VERUS_CONF_PATH"
},
{
"description": "Override: Verus daemon RPC URL (for remote daemons)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "VERUS_RPC_URL"
},
{
"description": "Override: RPC username (for remote daemons)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "VERUS_RPC_USER"
},
{
"description": "Override: RPC password (for remote daemons)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "VERUS_RPC_PASSWORD"
}
]
}
]
}