mcp-baepsae 3.1.0 → 3.1.5
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-KR.md +56 -11
- package/README.md +58 -13
- package/package.json +3 -2
package/README-KR.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
TypeScript MCP 레이어와 Swift 네이티브 브리지를 사용하는 iOS 시뮬레이터 및 macOS 앱 자동화용 로컬 MCP 서버입니다.
|
|
10
10
|
|
|
11
|
-
영문 문서는
|
|
11
|
+
영문 문서는 [README.md](./README.md)를 참고하세요.
|
|
12
12
|
|
|
13
13
|
## 목차
|
|
14
14
|
|
|
@@ -32,19 +32,25 @@ TypeScript MCP 레이어와 Swift 네이티브 브리지를 사용하는 iOS 시
|
|
|
32
32
|
|
|
33
33
|
## 설치
|
|
34
34
|
|
|
35
|
-
### 옵션 A)
|
|
35
|
+
### 옵션 A) npm (가장 간편)
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
# 설치 없이 바로 실행
|
|
39
|
+
npx mcp-baepsae
|
|
40
|
+
|
|
41
|
+
# 또는 전역 설치
|
|
42
|
+
npm install -g mcp-baepsae
|
|
42
43
|
```
|
|
43
44
|
|
|
44
|
-
|
|
45
|
+
> macOS에서는 설치 시 Swift 네이티브 바이너리가 자동 빌드됩니다. Swift가 없어도 simctl 기반 기능은 정상 작동합니다.
|
|
46
|
+
|
|
47
|
+
### 옵션 B) 소스에서 빌드
|
|
45
48
|
|
|
46
49
|
```bash
|
|
47
|
-
|
|
50
|
+
git clone https://github.com/oozoofrog/mcp-baepsae.git
|
|
51
|
+
cd mcp-baepsae
|
|
52
|
+
npm install
|
|
53
|
+
npm run build
|
|
48
54
|
```
|
|
49
55
|
|
|
50
56
|
## MCP 설정 (권장)
|
|
@@ -70,29 +76,68 @@ bash scripts/install.sh --tool all
|
|
|
70
76
|
|
|
71
77
|
## For LLM
|
|
72
78
|
|
|
73
|
-
LLM 에이전트가 이
|
|
79
|
+
LLM 에이전트가 이 MCP 서버를 설정할 때 필요한 모든 정보입니다.
|
|
80
|
+
|
|
81
|
+
### 빠른 시작 (한 줄)
|
|
74
82
|
|
|
75
83
|
```bash
|
|
84
|
+
# 지원하는 모든 클라이언트에 baepsae MCP 서버 등록
|
|
76
85
|
bash scripts/install.sh --tool all
|
|
77
86
|
```
|
|
78
87
|
|
|
79
|
-
|
|
88
|
+
저장소를 클론하지 않고 npm으로 설치한 경우 npx를 사용하세요:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
# Claude Code
|
|
92
|
+
claude mcp add baepsae -- npx -y mcp-baepsae
|
|
93
|
+
|
|
94
|
+
# Codex CLI
|
|
95
|
+
codex mcp add baepsae -- npx -y mcp-baepsae
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### 자동화 옵션
|
|
80
99
|
|
|
81
100
|
```bash
|
|
82
101
|
# 실제 실행 없이 명령만 출력
|
|
83
102
|
bash scripts/install.sh --tool all --dry-run
|
|
84
103
|
|
|
85
|
-
# 환경/의존성
|
|
104
|
+
# 환경/의존성 점검
|
|
86
105
|
bash scripts/install.sh --tool all --doctor
|
|
87
106
|
|
|
88
107
|
# MCP 등록 제거
|
|
89
108
|
bash scripts/install.sh --tool all --uninstall
|
|
90
109
|
```
|
|
91
110
|
|
|
111
|
+
### 런타임 옵션
|
|
112
|
+
|
|
113
|
+
설치 스크립트는 `--runtime` 플래그로 다양한 런타임을 지원합니다:
|
|
114
|
+
|
|
115
|
+
| 플래그 | 명령어 | 사용 시점 |
|
|
116
|
+
|---|---|---|
|
|
117
|
+
| `--runtime node` (기본값) | `node dist/index.js` | 소스 빌드 |
|
|
118
|
+
| `--runtime npx` | `npx -y mcp-baepsae` | npm 레지스트리, 전역 설치 불필요 |
|
|
119
|
+
| `--runtime bunx` | `bunx mcp-baepsae` | Bun 사용자 |
|
|
120
|
+
| `--runtime global` | `mcp-baepsae` | `npm install -g mcp-baepsae` 이후 |
|
|
121
|
+
|
|
92
122
|
## 수동 설정 (대안)
|
|
93
123
|
|
|
94
124
|
`scripts/install.sh`를 사용하지 않을 때:
|
|
95
125
|
|
|
126
|
+
### npx 사용 (npm 사용자 권장)
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# Claude Code
|
|
130
|
+
claude mcp add baepsae -- npx -y mcp-baepsae
|
|
131
|
+
|
|
132
|
+
# Codex CLI
|
|
133
|
+
codex mcp add baepsae -- npx -y mcp-baepsae
|
|
134
|
+
|
|
135
|
+
# Gemini CLI
|
|
136
|
+
gemini mcp add --scope user --transport stdio baepsae npx -y mcp-baepsae
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### 로컬 빌드 사용
|
|
140
|
+
|
|
96
141
|
```bash
|
|
97
142
|
# Claude Code (project)
|
|
98
143
|
claude mcp add --scope project --env="BAEPSAE_NATIVE_PATH=/ABS/PATH/native/.build/release/baepsae-native" baepsae -- node /ABS/PATH/dist/index.js
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
Local MCP server for iOS Simulator and macOS app automation with a TypeScript MCP layer and a Swift native bridge.
|
|
10
10
|
|
|
11
|
-
한국어 문서는
|
|
11
|
+
한국어 문서는 [README-KR.md](./README-KR.md)를 참고하세요.
|
|
12
12
|
|
|
13
13
|
## Table of Contents
|
|
14
14
|
|
|
@@ -40,19 +40,25 @@ Local MCP server for iOS Simulator and macOS app automation with a TypeScript MC
|
|
|
40
40
|
|
|
41
41
|
## Install
|
|
42
42
|
|
|
43
|
-
### Option A)
|
|
43
|
+
### Option A) npm (easiest)
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
46
|
+
# Run directly without installing
|
|
47
|
+
npx mcp-baepsae
|
|
48
|
+
|
|
49
|
+
# Or install globally
|
|
50
|
+
npm install -g mcp-baepsae
|
|
50
51
|
```
|
|
51
52
|
|
|
52
|
-
|
|
53
|
+
> On macOS, the Swift native binary is built automatically during install. If Swift is not available, the server still works with simctl-based features.
|
|
54
|
+
|
|
55
|
+
### Option B) From source
|
|
53
56
|
|
|
54
57
|
```bash
|
|
55
|
-
|
|
58
|
+
git clone https://github.com/oozoofrog/mcp-baepsae.git
|
|
59
|
+
cd mcp-baepsae
|
|
60
|
+
npm install
|
|
61
|
+
npm run build
|
|
56
62
|
```
|
|
57
63
|
|
|
58
64
|
## MCP Setup (Recommended)
|
|
@@ -78,29 +84,68 @@ bash scripts/install.sh --tool all
|
|
|
78
84
|
|
|
79
85
|
## For LLM
|
|
80
86
|
|
|
81
|
-
If an LLM agent
|
|
87
|
+
If you are an LLM agent setting up this MCP server, here is everything you need:
|
|
88
|
+
|
|
89
|
+
### Quick start (one command)
|
|
82
90
|
|
|
83
91
|
```bash
|
|
92
|
+
# Register baepsae as an MCP server for all supported clients
|
|
84
93
|
bash scripts/install.sh --tool all
|
|
85
94
|
```
|
|
86
95
|
|
|
87
|
-
|
|
96
|
+
If you installed via npm instead of cloning the repo, use npx:
|
|
88
97
|
|
|
89
98
|
```bash
|
|
90
|
-
#
|
|
99
|
+
# Claude Code
|
|
100
|
+
claude mcp add baepsae -- npx -y mcp-baepsae
|
|
101
|
+
|
|
102
|
+
# Codex CLI
|
|
103
|
+
codex mcp add baepsae -- npx -y mcp-baepsae
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Automation flags
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Preview commands without executing
|
|
91
110
|
bash scripts/install.sh --tool all --dry-run
|
|
92
111
|
|
|
93
|
-
#
|
|
112
|
+
# Verify environment and dependencies
|
|
94
113
|
bash scripts/install.sh --tool all --doctor
|
|
95
114
|
|
|
96
|
-
#
|
|
115
|
+
# Unregister from all clients
|
|
97
116
|
bash scripts/install.sh --tool all --uninstall
|
|
98
117
|
```
|
|
99
118
|
|
|
119
|
+
### Runtime options
|
|
120
|
+
|
|
121
|
+
The installer supports multiple runtimes via `--runtime`:
|
|
122
|
+
|
|
123
|
+
| Flag | Command | When to use |
|
|
124
|
+
|---|---|---|
|
|
125
|
+
| `--runtime node` (default) | `node dist/index.js` | Local source build |
|
|
126
|
+
| `--runtime npx` | `npx -y mcp-baepsae` | npm registry, no global install |
|
|
127
|
+
| `--runtime bunx` | `bunx mcp-baepsae` | Bun users |
|
|
128
|
+
| `--runtime global` | `mcp-baepsae` | After `npm install -g mcp-baepsae` |
|
|
129
|
+
|
|
100
130
|
## Manual Setup (Fallback)
|
|
101
131
|
|
|
102
132
|
Use this when you do not want to run `scripts/install.sh`.
|
|
103
133
|
|
|
134
|
+
### Using npx (recommended for npm users)
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
# Claude Code
|
|
138
|
+
claude mcp add baepsae -- npx -y mcp-baepsae
|
|
139
|
+
|
|
140
|
+
# Codex CLI
|
|
141
|
+
codex mcp add baepsae -- npx -y mcp-baepsae
|
|
142
|
+
|
|
143
|
+
# Gemini CLI
|
|
144
|
+
gemini mcp add --scope user --transport stdio baepsae npx -y mcp-baepsae
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
### Using local build
|
|
148
|
+
|
|
104
149
|
```bash
|
|
105
150
|
# Claude Code (project)
|
|
106
151
|
claude mcp add --scope project --env="BAEPSAE_NATIVE_PATH=/ABS/PATH/native/.build/release/baepsae-native" baepsae -- node /ABS/PATH/dist/index.js
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-baepsae",
|
|
3
|
-
"version": "3.1.
|
|
4
|
-
"
|
|
3
|
+
"version": "3.1.5",
|
|
4
|
+
"mcpName": "io.github.oozoofrog/baepsae",
|
|
5
|
+
"description": "Local MCP server for iOS Simulator and macOS app automation with a native Swift bridge",
|
|
5
6
|
"author": "oozoofrog",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|