junis 0.2.6 → 0.3.1
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 +17 -4
- package/dist/cli/index.js +1103 -319
- package/dist/server/mcp.js +919 -204
- package/dist/server/stdio.js +661 -204
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -152,15 +152,28 @@ npx junis logout
|
|
|
152
152
|
|
|
153
153
|
---
|
|
154
154
|
|
|
155
|
-
##
|
|
155
|
+
## MCP Client Integration
|
|
156
|
+
|
|
157
|
+
To use junis with Claude Code, Claude Desktop, Codex, or any other MCP client, add the following to your MCP config:
|
|
158
|
+
|
|
159
|
+
```json
|
|
160
|
+
{
|
|
161
|
+
"mcpServers": {
|
|
162
|
+
"junis": {
|
|
163
|
+
"command": "npx",
|
|
164
|
+
"args": ["-y", "junis", "--stdio"]
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
```
|
|
156
169
|
|
|
157
|
-
|
|
170
|
+
For Claude Code, you can also register via CLI:
|
|
158
171
|
|
|
159
172
|
```bash
|
|
160
|
-
claude mcp add junis -- npx junis --
|
|
173
|
+
claude mcp add junis -- npx -y junis --stdio
|
|
161
174
|
```
|
|
162
175
|
|
|
163
|
-
|
|
176
|
+
No separate server process is needed — the MCP client will launch junis automatically.
|
|
164
177
|
|
|
165
178
|
---
|
|
166
179
|
|