MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

M
MCP System Control

MCP-Server which provide tools to control you system

Created 2/21/2026
Updated about 21 hours 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.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/rainu/mcp-system-control
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

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