mrmainspring 0.2.8 → 0.2.9
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/dist/cli.js +10 -9
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -12,14 +12,15 @@ const VERSION = JSON.parse(readFileSync(join(_pkgRoot, "package.json"), "utf8"))
|
|
|
12
12
|
const HELP = `Mr Mainspring MCP server
|
|
13
13
|
|
|
14
14
|
Usage:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
mrmainspring Start the MCP stdio server
|
|
16
|
+
mrmainspring --help Show this help
|
|
17
|
+
mrmainspring --version Show the installed version
|
|
18
|
+
mrmainspring init Create local config, data, and logs directories
|
|
19
|
+
mrmainspring config Print MCP client config JSON
|
|
20
|
+
mrmainspring setup Initialize local files and configure MCP clients
|
|
21
|
+
mrmainspring setup -i Force interactive setup wizard (Windows)
|
|
22
|
+
mrmainspring doctor Check the local setup
|
|
23
|
+
mrmainspring update Show how to update to the latest version
|
|
23
24
|
|
|
24
25
|
MCP client config:
|
|
25
26
|
{
|
|
@@ -31,7 +32,7 @@ MCP client config:
|
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
|
|
34
|
-
Advanced users can
|
|
35
|
+
Advanced users can set SIGIL_ENV_FILE, SIGIL_DATA_DIR, Supabase, Casper,
|
|
35
36
|
and x402 env vars. No env vars are required for local memory, Grimoire, audit,
|
|
36
37
|
or payment preflight tools.
|
|
37
38
|
`;
|
package/package.json
CHANGED