relayax-cli 0.1.96 → 0.1.97
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.
|
@@ -14,14 +14,6 @@ export interface RequiresMcp {
|
|
|
14
14
|
};
|
|
15
15
|
env?: string[];
|
|
16
16
|
}
|
|
17
|
-
export interface RequiresConnector {
|
|
18
|
-
name: string;
|
|
19
|
-
type: string;
|
|
20
|
-
auth?: string;
|
|
21
|
-
env?: string;
|
|
22
|
-
required?: boolean;
|
|
23
|
-
description?: string;
|
|
24
|
-
}
|
|
25
17
|
export interface RequiresEnv {
|
|
26
18
|
name: string;
|
|
27
19
|
required?: boolean;
|
|
@@ -37,7 +29,6 @@ export interface Requires {
|
|
|
37
29
|
npm?: (string | RequiresNpm)[];
|
|
38
30
|
env?: RequiresEnv[];
|
|
39
31
|
teams?: string[];
|
|
40
|
-
connectors?: RequiresConnector[];
|
|
41
32
|
runtime?: {
|
|
42
33
|
node?: string;
|
|
43
34
|
python?: string;
|
|
@@ -229,8 +229,7 @@ ${LOGIN_JIT_GUIDE}
|
|
|
229
229
|
|
|
230
230
|
- **cli**: 파일에서 참조하는 CLI 도구 (playwright, ffmpeg, sharp 등)
|
|
231
231
|
- **npm**: import/require되는 npm 패키지
|
|
232
|
-
- **mcp**: MCP 서버
|
|
233
|
-
- **connectors**: 외부 서비스 연결 (Notion API, Slack webhook, Supabase 등 — type, auth 방식, 필요한 env)
|
|
232
|
+
- **mcp**: MCP 서버 설정 — 외부 서비스 연결 포함 (name, package, config, 필요한 env)
|
|
234
233
|
- **runtime**: Node.js/Python 등 최소 버전 요구
|
|
235
234
|
- **permissions**: 필요한 에이전트 권한 (filesystem, network, shell)
|
|
236
235
|
- **teams**: 의존하는 다른 relay 팀
|
|
@@ -267,13 +266,10 @@ requires:
|
|
|
267
266
|
command: "npx"
|
|
268
267
|
args: ["-y", "@supabase/mcp-server"]
|
|
269
268
|
env: [SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY]
|
|
270
|
-
connectors:
|
|
271
269
|
- name: notion
|
|
272
|
-
|
|
273
|
-
auth: bearer_token
|
|
274
|
-
env: NOTION_API_KEY
|
|
270
|
+
package: "@notionhq/mcp-server"
|
|
275
271
|
required: false
|
|
276
|
-
|
|
272
|
+
env: [NOTION_API_KEY]
|
|
277
273
|
runtime:
|
|
278
274
|
node: ">=18"
|
|
279
275
|
permissions:
|