You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AElf Node Skill provides MCP, CLI, and SDK interfaces for AElf public nodes with `REST for reads, SDK for contract execution, and selective fallback for fee estimate`.
8
+
AElf Node Skill provides MCP, CLI, and SDK interfaces for AElf public nodes with `REST for reads, SDK for contract execution, and selective fallback for fee estimate`, plus OpenClaw and IronClaw integration.
9
9
10
10
## Features
11
11
@@ -62,20 +62,50 @@ bun run test:unit
62
62
63
63
## Setup CLI
64
64
65
-
This repository includes a one-command setup CLI for Claude, Cursor, and OpenClaw.
65
+
This repository includes a one-command setup CLI for Claude, Cursor, OpenClaw, and IronClaw.
66
66
67
67
```bash
68
68
bun run setup claude
69
69
bun run setup cursor
70
70
bun run setup cursor --global
71
+
bun run setup ironclaw
71
72
bun run setup openclaw
72
73
bun run setup openclaw --config-path /path/to/openclaw-config.json
73
74
bun run setup list
74
75
bun run setup uninstall claude
75
76
bun run setup uninstall cursor --global
77
+
bun run setup uninstall ironclaw
76
78
bun run setup uninstall openclaw --config-path /path/to/openclaw-config.json
77
79
```
78
80
81
+
## IronClaw
82
+
83
+
```bash
84
+
bun run setup ironclaw
85
+
bun run setup uninstall ironclaw
86
+
```
87
+
88
+
The IronClaw setup writes a stdio MCP entry to `~/.ironclaw/mcp-servers.json` and installs this repo's `SKILL.md` to `~/.ironclaw/skills/aelf-node-skill/SKILL.md`.
89
+
90
+
Important trust model note:
91
+
92
+
- Use the trusted skill path above for write-capable flows such as `aelf_send_contract_transaction`.
93
+
- Do not rely on `~/.ironclaw/installed_skills/` for the primary install path when you need write approval behavior.
94
+
- This MCP server emits both standard MCP camelCase annotations and IronClaw-compatible snake_case annotations so the current IronClaw source can honor read/write hints.
95
+
96
+
Remote activation contract:
97
+
98
+
- GitHub repo/tree URLs are discovery sources only, not the final IronClaw install payload.
0 commit comments