Skip to main content

Systems Manager will update your system and install/upgrade applications. Additionally, as allow AI to perform these activities as an MCP Server

Project description

Systems-Manager - A2A | AG-UI | MCP

PyPI - Version MCP Server PyPI - Downloads GitHub Repo stars GitHub forks GitHub contributors PyPI - License GitHub

GitHub last commit (by committer) GitHub pull requests GitHub closed pull requests GitHub issues

GitHub top language GitHub language count GitHub repo size GitHub repo file count (file type) PyPI - Wheel PyPI - Implementation

Version: 1.8.1

Overview

Systems-Manager is a powerful CLI and MCP server tool to manage your system across multiple operating systems. It supports updating, installing, and optimizing applications, managing Windows features, installing Nerd Fonts, and retrieving system and hardware statistics. It now supports Ubuntu, Debian, Red Hat, Oracle Linux, SLES, Arch, and Windows, with Snap fallback for Linux application installations.

This repository is actively maintained - Contributions are welcome!

Features

  • Multi-OS Support: Works on Windows, Ubuntu, Debian, Red Hat, Oracle Linux, SLES, and Arch.
  • Application Management: Install and update applications using native package managers (apt, dnf, zypper, pacman, winget) with automatic Snap fallback for Linux.
  • Font Installation: Install specific Nerd Fonts (default: Hack) or all available fonts from the latest release.
  • Windows Feature Management: List, enable, or disable Windows optional features (Windows only).
  • System Optimization: Clean and optimize system resources (e.g., trash/recycle bin, autoremove, defragmentation on Windows).
  • System and Hardware Stats: Retrieve detailed OS and hardware information using psutil.
  • Logging: Optional logging to a specified file or default systems_manager.log in the script directory.
  • FastMCP Server: Expose all functionality via a Model Context Protocol (MCP) server over stdio or HTTP for integration with AI or automation systems.

MCP

MCP tools:

  • install_applications: Install applications with Snap fallback (Linux).
  • update: Update system and applications.
  • clean: Clean system resources (e.g., trash/recycle bin).
  • optimize: Optimize system (e.g., autoremove, defrag on Windows).
  • install_python_modules: Install Python modules via pip.
  • install_fonts: Install specified Nerd Fonts (default: Hack) or all fonts.
  • get_os_stats: Retrieve OS statistics.
  • get_hardware_stats: Retrieve hardware statistics.
  • list_windows_features: List Windows features (Windows only).
  • enable_windows_features: Enable Windows features (Windows only).
  • disable_windows_features: Disable Windows features (Windows only).
  • run_command: Run elevated commands on shell (Enable at your own risk).

Agent OS MCP Tools (via agent-utilities >= 0.3.0)

When agent-utilities is installed (which it is by default), the following Agent OS tool groups are automatically registered. Toggled via AGENT_OSTOOL=True (default: enabled).

Identity Management (AU-031):

  • issue_agent_identity: Issues a signed HMAC identity token for an agent
  • verify_agent_identity: Verifies an agent's identity token validity
  • revoke_agent_identity: Revokes an agent identity
  • list_agent_identities: Lists all registered agent identities

Policy Management (AU-031):

  • list_agent_policies: Lists all role-based agent policies
  • get_agent_policy: Gets policy details for a specific role
  • update_agent_policy: Updates allowed/denied tool patterns for a role
  • reload_policies: Reloads policies from disk

Specialist Registry (AU-032):

  • install_specialist: Installs a specialist package (MCP config merge + KG hydration)
  • uninstall_specialist: Uninstalls a specialist package
  • list_specialists: Lists installed/available specialist packages
  • search_specialists: Searches the registry by name, tags, or description

Agent Health (AU-030):

  • get_scheduler_stats: Returns cognitive scheduler statistics
  • list_agent_processes: Lists all processes in the scheduler
  • preempt_process: Preempts a running agent process
  • reset_agent_quota: Resets token usage for a process

File Watcher (AU-036):

  • check_file_change: Evaluates a file change against trigger rules
  • list_active_watchers: Lists configured file watcher triggers
  • drain_pending_triggers: Drains pending triggers for processing

Maintenance (AU-038):

  • list_maintenance_tasks: Lists all maintenance tasks and due status
  • run_maintenance_now: Triggers immediate maintenance task execution
  • schedule_maintenance: Adds a custom maintenance task
  • get_maintenance_log: Returns maintenance execution statistics

Architecture: Systems-manager is part of the Agent OS Triad. All tools are discoverable through the Knowledge Graph in agent-utilities. See the Agent OS Triad Architecture for the full reference.

A2A Agent

Architecture:

---
config:
  layout: dagre
---
flowchart TB
 subgraph subGraph0["Agent Capabilities"]
        C["Agent"]
        B["A2A Server - Uvicorn/FastAPI"]
        D["MCP Tools"]
        F["Agent Skills"]
  end
    C --> D & F
    A["User Query"] --> B
    B --> C
    D --> E["Platform API"]

     C:::agent
     B:::server
     A:::server
    classDef server fill:#f9f,stroke:#333
    classDef agent fill:#bbf,stroke:#333,stroke-width:2px
    style B stroke:#000000,fill:#FFD600
    style D stroke:#000000,fill:#BBDEFB
    style F fill:#BBDEFB
    style A fill:#C8E6C9
    style subGraph0 fill:#FFF9C4

Component Interaction Diagram

sequenceDiagram
    participant User
    participant Server as A2A Server
    participant Agent as Agent
    participant Skill as Agent Skills
    participant MCP as MCP Tools

    User->>Server: Send Query
    Server->>Agent: Invoke Agent
    Agent->>Skill: Analyze Skills Available
    Skill->>Agent: Provide Guidance on Next Steps
    Agent->>MCP: Invoke Tool
    MCP-->>Agent: Tool Response Returned
    Agent-->>Agent: Return Results Summarized
    Agent-->>Server: Final Response
    Server-->>User: Output

Graph Architecture

This agent uses pydantic-graph orchestration for intelligent routing and optimal context management.

---
title: Systems Manager Graph Agent
---
stateDiagram-v2
  [*] --> RouterNode: User Query
  RouterNode --> DomainNode: Classified Domain
  RouterNode --> [*]: Low confidence / Error
  DomainNode --> [*]: Domain Result
  • RouterNode: A fast, lightweight LLM (e.g., nvidia/nemotron-3-super) that classifies the user's query into one of the specialized domains.
  • DomainNode: The executor node. For the selected domain, it dynamically sets environment variables to temporarily enable ONLY the tools relevant to that domain, creating a highly focused sub-agent (e.g., gpt-4o) to complete the request. This preserves LLM context and prevents tool hallucination.

Usage

CLI

Short Flag Long Flag Description
-h --help See usage for script
-c --clean Clean Recycle/Trash bin
-e --enable-features Enable Windows features (comma-separated, Windows only)
-d --disable-features Disable Windows features (comma-separated, Windows only)
-l --list-features List all Windows features and their status (Windows only)
-f --fonts Install Nerd Fonts (comma-separated, e.g., Hack,Meslo or 'all'; default: Hack)
-i --install Install applications (comma-separated, e.g., python3,git)
-p --python Install Python modules (comma-separated)
-s --silent Suppress output to stdout
-u --update Update applications and Operating System
-o --optimize Optimize system (e.g., autoremove, clean cache, defrag)
--os-stats Print OS statistics (e.g., system, release, version)
--hw-stats Print hardware statistics (e.g., CPU, memory, disk)
--log-file Log to specified file (default: systems_manager.log)
systems-manager --fonts Hack,Meslo --update --clean --python geniusbot --install python3,git --enable-features Microsoft-Hyper-V-All,Containers --log-file /path/to/log.log

MCP CLI

Short Flag Long Flag Description
--mcp-url MCP Server URL to connect to http://systems-manager-mcp.arpa/mcp
--allowed-tools List of allowed MCP tools system_management
--web Enable Pydantic AI Web UI False (Env: ENABLE_WEB_UI)
-t --transport Transport method: 'stdio', 'http', or 'sse' [legacy] (default: stdio)
-s --host Host address for HTTP transport (default: 0.0.0.0)
-p --port Port number for HTTP transport (default: 8000)
--auth-type Authentication type: 'none', 'static', 'jwt', 'oauth-proxy', 'oidc-proxy', 'remote-oauth' (default: none)
--token-jwks-uri JWKS URI for JWT verification
--token-issuer Issuer for JWT verification
--token-audience Audience for JWT verification
--oauth-upstream-auth-endpoint Upstream authorization endpoint for OAuth Proxy
--oauth-upstream-token-endpoint Upstream token endpoint for OAuth Proxy
--oauth-upstream-client-id Upstream client ID for OAuth Proxy
--oauth-upstream-client-secret Upstream client secret for OAuth Proxy
--oauth-base-url Base URL for OAuth Proxy
--oidc-config-url OIDC configuration URL
--oidc-client-id OIDC client ID
--oidc-client-secret OIDC client secret
--oidc-base-url Base URL for OIDC Proxy
--remote-auth-servers Comma-separated list of authorization servers for Remote OAuth
--remote-base-url Base URL for Remote OAuth
--allowed-client-redirect-uris Comma-separated list of allowed client redirect URIs
--eunomia-type Eunomia authorization type: 'none', 'embedded', 'remote' (default: none)
--eunomia-policy-file Policy file for embedded Eunomia (default: mcp_policies.json)
--eunomia-remote-url URL for remote Eunomia server

Using as an MCP Server

The MCP Server can be run in two modes: stdio (for local testing) or http (for networked access). To start the server, use the following commands:

Run in stdio mode (default):

systems-manager-mcp --transport "stdio"

Run in HTTP mode:

systems-manager-mcp --transport "http"  --host "0.0.0.0"  --port "8000"

Dependencies

The following Python packages are automatically installed if missing:

  • distro: For Linux distribution detection.
  • psutil: For system and hardware statistics.
  • requests: For downloading Nerd Fonts.
  • fastmcp: For MCP server functionality (required for systems-manager-mcp).

Agent-to-Agent (A2A) Server

This package includes an Agent utilizing pydantic-ai that can be deployed as an A2A server.

Endpoints

  • Web UI: http://localhost:8000/ (if enabled)
  • A2A: http://localhost:8000/a2a (Discovery: /a2a/.well-known/agent.json)
  • AG-UI: http://localhost:8000/ag-ui (POST)

A2A CLI

Long Flag Description Default
--host Host to bind the server to 0.0.0.0
--port Port to bind the server to 9000
--reload Enable auto-reload False
--provider LLM Provider (openai, anthropic, google, etc) openai
--model-id LLM Model ID nvidia/nemotron-3-super
--base-url LLM Base URL (for OpenAI compatible providers) http://host.docker.internal:1234/v1
--api-key LLM API Key ollama
--mcp-url MCP Server URL to connect to None
--mcp-config MCP Server Config ...
--skills-directory Directory containing agent skills ...
--web Enable Pydantic AI Web UI False (Env: ENABLE_WEB_UI)

Run A2A Server

systems-manager-agent --provider openai --model-id nvidia/nemotron-3-super

Deploy MCP Server as a Service

The MCP server can be deployed using Docker, with configurable authentication, middleware, and Eunomia authorization.

Using Docker Run

docker pull knucklessg1/systems-manager:latest

docker run -d \
  --name systems-manager-mcp \
  -p 8004:8004 \
  -e HOST=0.0.0.0 \
  -e PORT=8004 \
  -e TRANSPORT=http \
  -e AUTH_TYPE=none \
  -e EUNOMIA_TYPE=none \
  knucklessg1/systems-manager:latest

For advanced authentication (e.g., JWT, OAuth Proxy, OIDC Proxy, Remote OAuth) or Eunomia, add the relevant environment variables:

docker run -d \
  --name systems-manager-mcp \
  -p 8004:8004 \
  -e HOST=0.0.0.0 \
  -e PORT=8004 \
  -e TRANSPORT=http \
  -e AUTH_TYPE=oidc-proxy \
  -e OIDC_CONFIG_URL=https://provider.com/.well-known/openid-configuration \
  -e OIDC_CLIENT_ID=your-client-id \
  -e OIDC_CLIENT_SECRET=your-client-secret \
  -e OIDC_BASE_URL=https://your-server.com \
  -e ALLOWED_CLIENT_REDIRECT_URIS=http://localhost:*,https://*.example.com/* \
  -e EUNOMIA_TYPE=embedded \
  -e EUNOMIA_POLICY_FILE=/app/mcp_policies.json \
  knucklessg1/systems-manager:latest

Using Docker Compose

Create a docker-compose.yml file:

services:
  systems-manager-mcp:
    image: knucklessg1/systems-manager:latest
    environment:
      - HOST=0.0.0.0
      - PORT=8004
      - TRANSPORT=http
      - AUTH_TYPE=none
      - EUNOMIA_TYPE=none
    ports:
      - 8004:8004

For advanced setups with authentication and Eunomia:

services:
  systems-manager-mcp:
    image: knucklessg1/systems-manager:latest
    environment:
      - HOST=0.0.0.0
      - PORT=8004
      - TRANSPORT=http
      - AUTH_TYPE=oidc-proxy
      - OIDC_CONFIG_URL=https://provider.com/.well-known/openid-configuration
      - OIDC_CLIENT_ID=your-client-id
      - OIDC_CLIENT_SECRET=your-client-secret
      - OIDC_BASE_URL=https://your-server.com
      - ALLOWED_CLIENT_REDIRECT_URIS=http://localhost:*,https://*.example.com/*
      - EUNOMIA_TYPE=embedded
      - EUNOMIA_POLICY_FILE=/app/mcp_policies.json
    ports:
      - 8004:8004
    volumes:
      - ./mcp_policies.json:/app/mcp_policies.json

Run the service:

docker-compose up -d

Configure mcp.json for AI Integration

{
  "mcpServers": {
    "systems_manager": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "systems-manager",
        "systems-manager-mcp"
      ],
      "env": {
        "SYSTEMS_MANAGER_SILENT": "False",
        "SYSTEMS_MANAGER_LOG_FILE": "~/Documents/systems_manager_mcp.log"
      },
      "timeout": 200000
    }
  }
}

Install Python Package

python -m pip install systems-manager

or

uv pip install --upgrade systems-manager

Repository Owners

GitHub followers GitHub User's stars

MCP Configuration Examples

1. Standard IO (stdio) Deployment

{
  "mcpServers": {
    "systems-manager": {
      "command": "uv",
      "args": [
        "run",
        "systems-manager-mcp"
      ],
      "env": {
        "AGENT_DESCRIPTION": "<YOUR_AGENT_DESCRIPTION>",
        "AGENT_OSTOOL": "True",
        "AGENT_POLICIES_PATH": "<YOUR_AGENT_POLICIES_PATH>",
        "AGENT_SYSTEM_PROMPT": "<YOUR_AGENT_SYSTEM_PROMPT>",
        "CRONTOOL": "True",
        "DEFAULT_AGENT_NAME": "<YOUR_DEFAULT_AGENT_NAME>",
        "DISKTOOL": "True",
        "FILESYSTEMTOOL": "True",
        "FIREWALL_MANAGEMENTTOOL": "True",
        "LOGTOOL": "True",
        "MAINTENANCE_PRIORITY": "<YOUR_MAINTENANCE_PRIORITY>",
        "MAINTENANCE_TOKEN_BUDGET": "<YOUR_MAINTENANCE_TOKEN_BUDGET>",
        "MAX_CONCURRENT_AGENTS": "<YOUR_MAX_CONCURRENT_AGENTS>",
        "MCP_CONFIG_PATH": "<YOUR_MCP_CONFIG_PATH>",
        "MISCTOOL": "True",
        "NETWORKTOOL": "True",
        "NODEJSTOOL": "True",
        "PERMISSIONS_SIGNING_KEY": "<YOUR_PERMISSIONS_SIGNING_KEY>",
        "PROCESSTOOL": "True",
        "PROJECT_ROOT": "<YOUR_PROJECT_ROOT>",
        "PYTHONTOOL": "True",
        "SERVICETOOL": "True",
        "SHELLTOOL": "True",
        "SPECIALIST_REGISTRY_PATH": "<YOUR_SPECIALIST_REGISTRY_PATH>",
        "SSH_MANAGEMENTTOOL": "True",
        "SYSTEMS_MANAGER_LOG_FILE": "<YOUR_SYSTEMS_MANAGER_LOG_FILE>",
        "SYSTEMS_MANAGER_SILENT": "<YOUR_SYSTEMS_MANAGER_SILENT>",
        "SYSTEMTOOL": "True",
        "SYSTEM_MANAGEMENTTOOL": "True",
        "TEXT_EDITORTOOL": "True",
        "USERTOOL": "True"
      }
    }
  }
}

2. Streamable HTTP (SSE) Deployment

{
  "mcpServers": {
    "systems-manager": {
      "command": "uv",
      "args": [
        "run",
        "systems-manager-mcp",
        "--transport",
        "http",
        "--host",
        "0.0.0.0",
        "--port",
        "8000"
      ],
      "env": {
        "AGENT_DESCRIPTION": "<YOUR_AGENT_DESCRIPTION>",
        "AGENT_OSTOOL": "True",
        "AGENT_POLICIES_PATH": "<YOUR_AGENT_POLICIES_PATH>",
        "AGENT_SYSTEM_PROMPT": "<YOUR_AGENT_SYSTEM_PROMPT>",
        "CRONTOOL": "True",
        "DEFAULT_AGENT_NAME": "<YOUR_DEFAULT_AGENT_NAME>",
        "DISKTOOL": "True",
        "FILESYSTEMTOOL": "True",
        "FIREWALL_MANAGEMENTTOOL": "True",
        "LOGTOOL": "True",
        "MAINTENANCE_PRIORITY": "<YOUR_MAINTENANCE_PRIORITY>",
        "MAINTENANCE_TOKEN_BUDGET": "<YOUR_MAINTENANCE_TOKEN_BUDGET>",
        "MAX_CONCURRENT_AGENTS": "<YOUR_MAX_CONCURRENT_AGENTS>",
        "MCP_CONFIG_PATH": "<YOUR_MCP_CONFIG_PATH>",
        "MISCTOOL": "True",
        "NETWORKTOOL": "True",
        "NODEJSTOOL": "True",
        "PERMISSIONS_SIGNING_KEY": "<YOUR_PERMISSIONS_SIGNING_KEY>",
        "PROCESSTOOL": "True",
        "PROJECT_ROOT": "<YOUR_PROJECT_ROOT>",
        "PYTHONTOOL": "True",
        "SERVICETOOL": "True",
        "SHELLTOOL": "True",
        "SPECIALIST_REGISTRY_PATH": "<YOUR_SPECIALIST_REGISTRY_PATH>",
        "SSH_MANAGEMENTTOOL": "True",
        "SYSTEMS_MANAGER_LOG_FILE": "<YOUR_SYSTEMS_MANAGER_LOG_FILE>",
        "SYSTEMS_MANAGER_SILENT": "<YOUR_SYSTEMS_MANAGER_SILENT>",
        "SYSTEMTOOL": "True",
        "SYSTEM_MANAGEMENTTOOL": "True",
        "TEXT_EDITORTOOL": "True",
        "USERTOOL": "True"
      }
    }
  }
}

Project details


Release history Release notifications | RSS feed

This version

1.8.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

systems_manager-1.8.1.tar.gz (72.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

systems_manager-1.8.1-py3-none-any.whl (72.7 kB view details)

Uploaded Python 3

File details

Details for the file systems_manager-1.8.1.tar.gz.

File metadata

  • Download URL: systems_manager-1.8.1.tar.gz
  • Upload date:
  • Size: 72.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for systems_manager-1.8.1.tar.gz
Algorithm Hash digest
SHA256 f12a96f61f732c73fd3af9d06dc709b7307d163ad8afd889fe0a029bd4753e88
MD5 8b9fcb2a0453f9880d041b6b31e98064
BLAKE2b-256 c76f9a21ea3f30015db4194d8b6b1b1021a03e750ca74447d737ee3aadb857e9

See more details on using hashes here.

File details

Details for the file systems_manager-1.8.1-py3-none-any.whl.

File metadata

File hashes

Hashes for systems_manager-1.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ea9092e46c286f62b8a1e9607e2d288ef5f1b9a6f39cdb4a84df3abe950a5e33
MD5 f0d94d0477dee14451e65bb5132709ff
BLAKE2b-256 7b13ce5ec72d3bfad41362c5c9a592fa648ea262e83b0194b760ca1c4a83e6e8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page