# managesw-mcp **Repository Path**: mirrors_openSUSE/managesw-mcp ## Basic Information - **Project Name**: managesw-mcp - **Description**: MCP server for linux system package managers - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-19 - **Last Updated**: 2026-04-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # managesw-mcp `managesw-mcp` is a server that exposes OS software management functions through the Model Context Protocol (MCP). It allows you to manage packages, repositories, and patches on a Linux system. Most of the functions are only available on `zypper` and `dnf` based systems ## Installation from the source 1. **Install Go:** Make sure you have Go version 1.22.x or later installed. 2. **Clone the repository:** ```bash git clone https://github.com/openSUSE/managesw-mcp.git cd managesw-mcp ``` 3. **Build the server:** ```bash make ``` or ```bash go build ``` ## Usage To interact with the `managesw-mcp` server, you can use `mcptools`, a command-line interface for MCP servers. You can find more information about `mcptools` at [https://github.com/f/mcptools](https://github.com/f/mcptools). A simple call would be: ``` ~/go/bin/mcptools call list_packages go run managesw-mcp.go ```