junis 0.2.5 → 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 CHANGED
@@ -152,15 +152,28 @@ npx junis logout
152
152
 
153
153
  ---
154
154
 
155
- ## Claude Code 연동
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
- junis를 stdio MCP 서버로 등록하면 Claude Code가 자동으로 실행합니다:
170
+ For Claude Code, you can also register via CLI:
158
171
 
159
172
  ```bash
160
- claude mcp add junis -- npx junis --local
173
+ claude mcp add junis -- npx -y junis --stdio
161
174
  ```
162
175
 
163
- 등록 Claude Code에서 별도 서버 시작 없이 모든 도구를 바로 사용할 있습니다.
176
+ No separate server process is needed the MCP client will launch junis automatically.
164
177
 
165
178
  ---
166
179