-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json
More file actions
54 lines (54 loc) · 1.39 KB
/
mcp.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"mcpServers": {
"terminal": {
"command": "uv",
"args": [
"--directory",
"/app/terminal-mcp",
"run",
"entrypoint.py"
],
"env": {
"OPENAI_API_KEY": "$OPENAI_API_KEY",
"HF_TOKEN": "$HF_TOKEN",
"OPENWEIGHTS_API_KEY": "$OPENWEIGHTS_API_KEY",
"ANTHROPIC_API_KEY": "$ANTHROPIC_API_KEY"
}
},
"web": {
"command": "uv",
"args": [
"--directory",
"/app/web-mcp",
"run",
"web.py"
],
"env": {
"SERP_API_KEY": "$SERP_API_KEY"
}
},
"talk2model": {
"command": "uv",
"args": [
"--directory",
"/app/talk-to-model",
"run",
"talk_to_model.py"
],
"env": {
"OPENAI_API_KEY": "$OPENAI_API_KEY",
"OPENWEIGHTS_API_KEY": "$OPENWEIGHTS_API_KEY",
"HF_TOKEN": "$HF_TOKEN"
}
},
"browser": {
"command": "uv",
"args": [
"--directory",
"/app/browser-mcp",
"run",
"browser_mcp.py"
]
}
}
}