seojeom-mcp 0.3.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/LICENSE +21 -0
- package/README.md +84 -0
- package/bin/seojeom-mcp +2 -0
- package/dist/standalone.js +160 -0
- package/package.json +56 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Seojeom
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Seojeom MCP Server
|
|
2
|
+
|
|
3
|
+
Local-first MCP server for Claude and Codex.
|
|
4
|
+
|
|
5
|
+
`seojeom-mcp` binds to the project currently opened by the Seojeom desktop app or Godot launcher through a shared registry directory, then serves that project's local wiki and graph data over stdio.
|
|
6
|
+
|
|
7
|
+
## Quickstart
|
|
8
|
+
|
|
9
|
+
### Claude Code
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
claude mcp add -s local \
|
|
13
|
+
-e SEOJEOM_SHARED_REGISTRY_DIR=/mnt/c/Users/<you>/.seojeom/registry \
|
|
14
|
+
seojeom -- npx -y seojeom-mcp \
|
|
15
|
+
--router \
|
|
16
|
+
--host-kind auto \
|
|
17
|
+
--approval-mode prompt
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Claude Desktop
|
|
21
|
+
|
|
22
|
+
Add this to `claude_desktop_config.json` and restart Claude Desktop:
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"mcpServers": {
|
|
27
|
+
"seojeom": {
|
|
28
|
+
"command": "npx",
|
|
29
|
+
"env": {
|
|
30
|
+
"SEOJEOM_SHARED_REGISTRY_DIR": "<shared-registry-dir>"
|
|
31
|
+
},
|
|
32
|
+
"args": [
|
|
33
|
+
"-y",
|
|
34
|
+
"seojeom-mcp",
|
|
35
|
+
"--router",
|
|
36
|
+
"--host-kind", "auto",
|
|
37
|
+
"--approval-mode", "prompt"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Print the exact onboarding command first
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npx -y seojeom-mcp --print-claude-onboarding
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## What it provides
|
|
51
|
+
|
|
52
|
+
- project binding to the currently active desktop/Godot project
|
|
53
|
+
- local wiki read/search/write tools
|
|
54
|
+
- local graph read/search/query tools
|
|
55
|
+
- core graph mutation/proposal tools for local authoring tasks
|
|
56
|
+
- approval-gated mutating operations
|
|
57
|
+
|
|
58
|
+
The exact tool surface is discovered at runtime through MCP `tools/list`.
|
|
59
|
+
|
|
60
|
+
## Runtime contract
|
|
61
|
+
|
|
62
|
+
- primary transport: `stdio`
|
|
63
|
+
- primary install path: `npx -y seojeom-mcp`
|
|
64
|
+
- recommended mode: shared-registry router mode
|
|
65
|
+
- expected runtime: Node `>=20.20.0`
|
|
66
|
+
- public npm package shape: standalone stdio entrypoint only
|
|
67
|
+
|
|
68
|
+
## Registry
|
|
69
|
+
|
|
70
|
+
- MCP Registry identifier target: `io.github.seojeom/seojeom-mcp`
|
|
71
|
+
- planned publish mode: GitHub Actions Trusted Publishing + `npm publish --provenance`
|
|
72
|
+
|
|
73
|
+
## Notes
|
|
74
|
+
|
|
75
|
+
- This package is still a preview release and the tool surface may evolve between versions.
|
|
76
|
+
- Router mode is the recommended public path. Direct per-project standalone flags remain as a compatibility fallback.
|
|
77
|
+
- The public package defaults to a core authoring tool surface. Prompts, resources, and more specialized orchestration surfaces are reserved for non-public/internal profiles.
|
|
78
|
+
- Public package documentation intentionally stays focused on installation and end-user usage. Internal release automation and repository-specific operator workflows are not part of the package contract.
|
|
79
|
+
|
|
80
|
+
## Links
|
|
81
|
+
|
|
82
|
+
- Repository: `https://github.com/seojeom/seojeom-mcp`
|
|
83
|
+
- Issues: `https://github.com/seojeom/seojeom-mcp/issues`
|
|
84
|
+
- License: MIT
|
package/bin/seojeom-mcp
ADDED