Adds linux-mcp-server to the goose registry (#6979)

Signed-off-by: Eliane Pereira <elpereir@redhat.com>
Signed-off-by: Rodolfo Olivieri <rodolfo.olivieri3@gmail.com>
Co-authored-by: Eliane Pereira <elpereir@redhat.com>
This commit is contained in:
elianerpereira
2026-03-07 10:48:47 +01:00
committed by GitHub
parent ab99032477
commit ffa2f155cd
2 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
---
title: Linux MCP Server Extension
description: Add Linux MCP Server as a goose Extension
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import YouTubeShortEmbed from '@site/src/components/YouTubeShortEmbed';
import CLIExtensionInstructions from '@site/src/components/CLIExtensionInstructions';
import GooseDesktopInstaller from '@site/src/components/GooseDesktopInstaller';
import GooseBuiltinInstaller from '@site/src/components/GooseBuiltinInstaller';
This tutorial covers how to add the [Linux MCP Server](https://github.com/rhel-lightspeed/linux-mcp-server) as a goose extension to enable AI assistants to run, discover, and troubleshoot complex issues on Linux systems.
:::tip TLDR
<Tabs groupId="interface">
<TabItem value="ui" label="goose Desktop" default>
[Install Linux MCP Server](https://rhel-lightspeed.github.io/linux-mcp-server/install/)
</TabItem>
<TabItem value="cli" label="goose CLI">
**Command**
```sh
# Using uv (recommended)
uvx linux-mcp-server
```
</TabItem>
</Tabs>
:::
## Configuration
:::info
Note that you'll need [uv](https://docs.astral.sh/uv/#installation) installed on your system to run this command, as it uses *uvx*.
:::
<Tabs groupId="interface">
<TabItem value="ui" label="goose Desktop" default>
<GooseDesktopInstaller
extensionId="linux-mcp-server"
extensionName="Linux MCP server"
description="Tools for Linux system discovery and troubleshooting"
type="stdio"
command="uvx"
args={["linux-mcp-server"]}
timeout={300}
/>
</TabItem>
<TabItem value="cli" label="goose CLI">
<CLIExtensionInstructions
name="Linux MCP Server"
description="Tools for Linux system discovery and troubleshooting"
type="stdio"
command="uvx linux-mcp-server"
timeout={300}
/>
</TabItem>
</Tabs>
## Example Usage
Follow the instructions on how to use the Linux MCP Server for system diagnostics and troubleshooting.
### goose Prompt
> _My wifi connection is not working very well. Find the error messages in the system logs and diagnose the problem to help me fix it._
### goose Output
:::note Desktop
🤖 LLM output 🤖
Ill help you diagnose your WiFi connectivity issues by examining the system logs for error messages related to your network interfaces and wireless connectivity. Let me start by gathering information about your system and checking the relevant logs.
:::

View File

@@ -409,6 +409,34 @@
"endorsed": true,
"environmentVariables": []
},
{
"id": "linux-mcp-server",
"name": "Linux MCP Server",
"description": "Tools to allow LLM clients to interact with Linux systems remotely",
"command": "uvx linux-mcp-server",
"documentation": "https://rhel-lightspeed.github.io/linux-mcp-server/clients/#environment-variables",
"link": "https://github.com/rhel-lightspeed/linux-mcp-server",
"installation_notes": "Install using uvx package manager. Note: This is a read-only mcp server for discovering and interacting with remote/local systems.",
"is_builtin": false,
"endorsed": false,
"environmentVariables": [
{
"name": "LINUX_MCP_USER",
"description": "Default username for SSH connections",
"required": false
},
{
"name": "LINUX_MCP_SSH_KEY_PATH",
"description": "Path to SSH private key",
"required": false
},
{
"name": "LINUX_MCP_VERIFY_HOST_KEYS",
"description": "Verify remote host identity via known_hosts",
"required": false
}
]
},
{
"id": "mbot-mcp",
"name": "MBot",