Create settings/mcp_config.json
Browse files- settings/mcp_config.json +26 -0
settings/mcp_config.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
],
|
| 23 |
+
"url": "https://server.smithery.ai/@Cicatriiz/healthcare-mcp-public/mcp?api_key={api_key}"
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
}
|