-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
73 lines (73 loc) · 2.32 KB
/
Copy pathserver.json
File metadata and controls
73 lines (73 loc) · 2.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.rustok-org/rustok-wallet-tui",
"description": "Self-custody Ethereum wallet (MCP/stdio). Keys stay in a local Docker volume; transactions that move funds require human approval in a terminal console.",
"version": "0.6.0",
"websiteUrl": "https://github.com/rustok-org/mcp",
"repository": {
"url": "https://github.com/rustok-org/mcp",
"source": "github"
},
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/rustok-org/rustok-wallet-tui:v0.6.0",
"transport": {
"type": "stdio"
},
"runtimeHint": "docker",
"runtimeArguments": [
{
"type": "named",
"name": "-i",
"description": "Keep stdin open — required for the stdio MCP transport."
},
{
"type": "named",
"name": "--rm",
"description": "Remove the ephemeral container on exit (keys persist in the volume)."
},
{
"type": "named",
"name": "--init",
"description": "PID-1 init: signal forwarding and zombie reaping."
},
{
"type": "named",
"name": "-v",
"description": "Mount the local keystore volume (self-custody: keys never leave this volume).",
"value": "rustok-wallet-tui:/data"
},
{
"type": "named",
"name": "-e",
"description": "Keystore password.",
"value": "RUSTOK_KEYRING_PASSWORD={password}",
"isRequired": true,
"variables": {
"password": {
"description": "Password that unlocks your local keystore (the one set at create-wallet).",
"isRequired": true,
"isSecret": true,
"format": "string"
}
}
},
{
"type": "named",
"name": "-e",
"description": "Ethereum mainnet RPC URL.",
"value": "RUSTOK_RPC_URLS_1={rpc_url}",
"isRequired": true,
"variables": {
"rpc_url": {
"description": "Ethereum mainnet RPC URL (an Alchemy key URL, or a public RPC).",
"isRequired": true,
"format": "string"
}
}
}
]
}
]
}