MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

M
MCP System Control
作者 @rainu

MCP-Server which provide tools to control you system

创建于 2/21/2026
更新于 3 days ago
Repository documentation and setup instructions

Go codecov Go Report Card Go Reference

mcp-system-control

This is an MCP-Server which allows a LLM to control the system. It provides many tools which can be used by the LLM to control the system.

For example:

  • executing commands on the system
  • file system access
  • get system information

Each tool can be disabled. It is also possible to define your own custom tools which can be used by the LLM. Each tool call can also be protected by a user approval. So before a tool is executed, the user will be asked if they want to execute the tool call. This can be useful to prevent accidental tool calls which can be harmful for the system.

Usage

The MCP-Server can be started in tree different modes:

As stdio

mcp-system-control

As SSE serer

mcp-system-control --mcp.sse.bindAddress=":8080"

As Streamable server

mcp-system-control --mcp.streamable.bindAddress=":8080"

Test

To test the server, you can use the following command:

npx @modelcontextprotocol/inspector

User approval

All tools can be protected by a user approval. If a tool is protected by a user approval, the user will be asked if they want to execute the tool call. For asking a user, system tools are used. The server will try if one of these tools are available and use the first one which is available:

If no system tool is available, the tool call will be rejected and an error will be returned to the LLM.

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/rainu/mcp-system-control
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "rainu-mcp-system-control": { "command": "git", "args": [ "clone", "https://github.com/rainu/mcp-system-control" ] } } }