forked from rhel-lightspeed/linux-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
100 lines (99 loc) · 2.93 KB
/
server.json
File metadata and controls
100 lines (99 loc) · 2.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.rhel-lightspeed/linux-mcp-server",
"description": "MCP server for read-only Linux system administration, diagnostics, and troubleshooting",
"repository": {
"url": "https://github.com/rhel-lightspeed/linux-mcp-server",
"source": "github"
},
"version": "$version",
"packages": [
{
"registryType": "pypi",
"identifier": "linux-mcp-server",
"version": "$version",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "LINUX_MCP_USER",
"description": "Default username for SSH connections",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_SSH_KEY_PATH",
"description": "Path to SSH private key",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_KEY_PASSPHRASE",
"description": "Passphrase for encrypted SSH key",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "LINUX_MCP_SEARCH_FOR_SSH_KEY",
"description": "Auto-discover keys in `~/.ssh`",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_COMMAND_TIMEOUT",
"description": "SSH command timeout in seconds (default: 30)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_VERIFY_HOST_KEYS",
"description": "Verify remote host identity via known_hosts",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_KNOWN_HOSTS_PATH",
"description": "Custom path to known_hosts file",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_ALLOWED_LOG_PATHS",
"description": "Comma-separated allowlist of log files",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_LOG_DIR",
"description": "Server log directory",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_LOG_LEVEL",
"description": "Log verbosity (DEBUG, INFO, WARNING)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINUX_MCP_LOG_RETENTION_DAYS",
"description": "Days to keep log files",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}