-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
77 lines (77 loc) · 1.76 KB
/
Copy pathconfig.json.example
File metadata and controls
77 lines (77 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"mcpServers": {
"code-collaboration": {
"command": "npx",
"args": ["-y", "@github/github-mcp-server"],
"env": {
"GITHUB_TOKEN": "YOUR_GITHUB_PAT"
}
},
"browser-automation": {
"command": "npx",
"args": ["-y", "@playwright/mcp@latest", "--extension"],
"env": {}
},
"design-handoff": {
"url": "http://localhost:8000/mcp?role=Developer&name=YourName"
},
"api-documentation": {
"command": "npx",
"args": [
"-y",
"apifox-mcp-server@latest",
"--project=YOUR_APIFOX_PROJECT_ID"
],
"env": {
"APIFOX_ACCESS_TOKEN": "YOUR_APIFOX_TOKEN"
}
}
},
"env": {
"shared": {
"OPENAI_API_KEY": "",
"OPENAI_BASE_URL": "",
"ANTHROPIC_API_KEY": "",
"ANTHROPIC_BASE_URL": ""
}
},
"platforms": {
"rag-gateway": {
"env": {
"OPENAI_DEFAULT_MODEL": "",
"DATAEYES_API_KEY": ""
}
},
"claude": {
"env": {
"ANTHROPIC_MODEL": "",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "",
"CLAUDE_CODE_EFFORT_LEVEL": ""
}
},
"codex": {
"model": "",
"modelProvider": null,
"modelReasoningEffort": "medium",
"providerName": "shuyanai",
"wireApi": "responses",
"envKey": "OPENAI_API_KEY",
"features": {
"skills": true,
"multi_agent": true,
"js_repl": false,
"default_mode_request_user_input": true
},
"projects": {
"~/Desktop/iOS/bajoseekios": {
"trust_level": "trusted"
},
"~/Desktop/iOS/STBaseProject": {
"trust_level": "trusted"
}
}
}
}
}