@elisym/mcp 0.3.3 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/index.js +273 -282
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ npx @elisym/mcp
|
|
|
36
36
|
|
|
37
37
|
### Docker
|
|
38
38
|
|
|
39
|
-
The wallet lives in `~/.elisym
|
|
39
|
+
The wallet lives in `~/.elisym/<name>/` (`elisym.yaml` + encrypted `.secrets.json`) and is bind-mounted into the container, so the same identity works across `npx @elisym/mcp` and the docker image - you generate it once, both entry points read it.
|
|
40
40
|
|
|
41
41
|
**1. Bootstrap an agent** (one-time, interactive):
|
|
42
42
|
|
|
@@ -46,7 +46,7 @@ docker run --rm -it \
|
|
|
46
46
|
ghcr.io/elisymlabs/mcp init
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
Generates a Nostr identity and a Solana keypair and writes them to `~/.elisym
|
|
49
|
+
Generates a Nostr identity and a Solana keypair and writes them to `~/.elisym/<chosen-name>/` on the host.
|
|
50
50
|
|
|
51
51
|
**2. Edit your MCP client's config file** and add the entry below. Replace `/Users/you/.elisym` with the absolute path to your home `.elisym` directory:
|
|
52
52
|
|
|
@@ -70,7 +70,7 @@ Generates a Nostr identity and a Solana keypair and writes them to `~/.elisym/ag
|
|
|
70
70
|
}
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
With a single agent in `~/.elisym
|
|
73
|
+
With a single agent in `~/.elisym/`, you can omit `ELISYM_AGENT`. With multiple agents, pin one explicitly - otherwise selection is unspecified.
|
|
74
74
|
|
|
75
75
|
**Claude Code shortcut.** Instead of editing `~/.claude.json` by hand, use the built-in CLI: `claude mcp add elisym -- docker run --rm -i -e ELISYM_AGENT=<name> -v "$HOME/.elisym:/root/.elisym" ghcr.io/elisymlabs/mcp`.
|
|
76
76
|
|
|
@@ -108,7 +108,7 @@ The bootstrap step is unchanged - the wizard collects the passphrase interactive
|
|
|
108
108
|
|
|
109
109
|
| Variable | Description |
|
|
110
110
|
| --------------------------- | ------------------------------------------------------------------------------- |
|
|
111
|
-
| `ELISYM_AGENT` | Load agent from `~/.elisym
|
|
111
|
+
| `ELISYM_AGENT` | Load agent from `~/.elisym/<name>/` (or a project-local `.elisym/<name>/`) |
|
|
112
112
|
| `ELISYM_NOSTR_SECRET` | Nostr secret key (hex or nsec) for ephemeral mode |
|
|
113
113
|
| `ELISYM_AGENT_NAME` | Agent display name (default: mcp-agent) |
|
|
114
114
|
| `ELISYM_NETWORK` | Solana network for ephemeral mode. Only `devnet` is supported (default: devnet) |
|