seojeom-mcp 0.3.1 → 0.3.3
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 +8 -5
- package/dist/standalone.js +108 -99
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Local-first MCP server for Claude and Codex.
|
|
|
11
11
|
```bash
|
|
12
12
|
claude mcp add -s local \
|
|
13
13
|
-e SEOJEOM_SHARED_REGISTRY_DIR=/mnt/c/Users/<you>/.seojeom/registry \
|
|
14
|
-
seojeom --
|
|
14
|
+
seojeom -- npm exec --yes --package=seojeom-mcp seojeom-mcp -- \
|
|
15
15
|
--router \
|
|
16
16
|
--host-kind auto \
|
|
17
17
|
--approval-mode prompt
|
|
@@ -25,13 +25,16 @@ Add this to `claude_desktop_config.json` and restart Claude Desktop:
|
|
|
25
25
|
{
|
|
26
26
|
"mcpServers": {
|
|
27
27
|
"seojeom": {
|
|
28
|
-
"command": "
|
|
28
|
+
"command": "npm",
|
|
29
29
|
"env": {
|
|
30
30
|
"SEOJEOM_SHARED_REGISTRY_DIR": "<shared-registry-dir>"
|
|
31
31
|
},
|
|
32
32
|
"args": [
|
|
33
|
-
"
|
|
33
|
+
"exec",
|
|
34
|
+
"--yes",
|
|
35
|
+
"--package=seojeom-mcp",
|
|
34
36
|
"seojeom-mcp",
|
|
37
|
+
"--",
|
|
35
38
|
"--router",
|
|
36
39
|
"--host-kind", "auto",
|
|
37
40
|
"--approval-mode", "prompt"
|
|
@@ -44,7 +47,7 @@ Add this to `claude_desktop_config.json` and restart Claude Desktop:
|
|
|
44
47
|
### Print the exact onboarding command first
|
|
45
48
|
|
|
46
49
|
```bash
|
|
47
|
-
|
|
50
|
+
npm exec --yes --package=seojeom-mcp seojeom-mcp -- --print-claude-onboarding
|
|
48
51
|
```
|
|
49
52
|
|
|
50
53
|
## What it provides
|
|
@@ -60,7 +63,7 @@ The exact tool surface is discovered at runtime through MCP `tools/list`.
|
|
|
60
63
|
## Runtime contract
|
|
61
64
|
|
|
62
65
|
- primary transport: `stdio`
|
|
63
|
-
- primary install path: `
|
|
66
|
+
- primary install path: `npm exec --yes --package=seojeom-mcp seojeom-mcp --`
|
|
64
67
|
- recommended mode: shared-registry router mode
|
|
65
68
|
- expected runtime: Node `>=20.20.0`
|
|
66
69
|
- public npm package shape: standalone stdio entrypoint only
|