-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmcp_config.json
More file actions
50 lines (50 loc) · 1.45 KB
/
mcp_config.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"_comment": "SecureShell MCP Server Configuration",
"_docs": "Auto-detects provider from API keys, or set SECURESHELL_PROVIDER explicitly",
"mcpServers": {
"secureshell-openai": {
"command": "python",
"args": [
"-m",
"secureshell.integrations.mcp_server"
],
"env": {
"OPENAI_API_KEY": "sk-...",
"SECURESHELL_MODEL": "gpt-4.1-mini"
}
},
"secureshell-anthropic": {
"command": "python",
"args": [
"-m",
"secureshell.integrations.mcp_server"
],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-...",
"SECURESHELL_MODEL": "claude-sonnet-4-5"
}
},
"secureshell-gemini": {
"command": "python",
"args": [
"-m",
"secureshell.integrations.mcp_server"
],
"env": {
"GEMINI_API_KEY": "AIza...",
"SECURESHELL_MODEL": "gemini-2.5-flash"
}
},
"secureshell-groq": {
"command": "python",
"args": [
"-m",
"secureshell.integrations.mcp_server"
],
"env": {
"GROQ_API_KEY": "gsk_...",
"SECURESHELL_MODEL": "llama-3.3-70b-versatile"
}
}
}
}