Create settings/mcp_config.json
#2
by
victoria-latynina
- opened
- settings/mcp_config.json +28 -0
settings/mcp_config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"mcpServers": {
|
3 |
+
"whoop": {
|
4 |
+
"command": "whoop-mcp-server/venv/bin/python3",
|
5 |
+
"args": [
|
6 |
+
"whoop-mcp-server/src/whoop_server.py"
|
7 |
+
],
|
8 |
+
"cwd": "whoop-mcp-server",
|
9 |
+
"env": {
|
10 |
+
"WHOOP_EMAIL": "your email",
|
11 |
+
"WHOOP_PASSWORD": "password"
|
12 |
+
},
|
13 |
+
"url": "http://localhost:8000"},
|
14 |
+
"healthcare-mcp-public": {
|
15 |
+
"command": "npx",
|
16 |
+
"args": [
|
17 |
+
"-y",
|
18 |
+
"@smithery/cli@latest",
|
19 |
+
"run",
|
20 |
+
"@Cicatriiz/healthcare-mcp-public",
|
21 |
+
"--key",
|
22 |
+
"your key"
|
23 |
+
],
|
24 |
+
"url": "https://server.smithery.ai/@Cicatriiz/healthcare-mcp-public/mcp"
|
25 |
+
}
|
26 |
+
}
|
27 |
+
}
|
28 |
+
|