Mammouth Control Center
Provides an integration with Cloudflare Tunnels to expose the MCP server via a public HTTPS URL using cloudflared.
Provides an integration with ngrok to expose the MCP server through an instant public HTTP tunnel, with local API auto-discovery.
Provides an integration to expose the MCP server through a Tailscale Funnel, creating a public HTTPS endpoint.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mammouth Control CenterCheck my system CPU and memory usage and list the top processes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
⚠️ ⚡ NOSKILLZ VIBECODED DISCLAIMER & HARDCORE WARNING ⚡ ⚠️
WELCOME TO THE RAW AGENTIC POWERHOUSE.
This software is 100% pure vibe-coded by noskillz for maximum execution speed, sovereign Windows 11 DevOps supremacy, and zero-compromise automation.
🦣 With great agentic power comes absolute responsibility:
You are handing an autonomous AI assistant real keys to your operating system: PowerShell execution, sandboxed file modifications, hardware diagnostics, and remote SSH servers.
NEVER expose this server publicly to the open internet without Tailscale, a private VPN, or Token Authentication enabled, unless you enjoy chaotic uninvited guests playing Doom in your PowerShell console.
By running this tool, you acknowledge that you are a sovereign captain of your machine. If you instruct an AI to "clean up everything" and it happily deletes your favorite meme stash, that is between you, the AI, and the cosmos.
Test your prompts, sandbox your workspaces, and embrace the agentic vibe responsibly. 🚀
⚖️ Legal Disclaimer & Limitation of Liability
Please read carefully before deploying or operating this software:
Gratuitous Provision ("As-Is" / Statutory Basis):
This software is provided as an open-source project entirely free of charge on an "as-is" and "as-available" basis without warranties of any kind, either express or implied. Under governing statutory law for gratuitous software provision (including Section 521 of the German Civil Code / BGB), the legal liability of the author and developer (noskillz / hellforgex) is strictly limited to intentional misconduct (Vorsatz) and gross negligence (grobe Fahrlässigkeit). Any liability for ordinary, slight, or simple negligence is expressly excluded to the fullest extent permitted by applicable law.Sole Risk and Operator Responsibility:
The execution and utilization of all functions within this software—specifically modules executing local PowerShell commands, file system modifications (writing, modifying, deleting), system diagnostics, and remote SSH/VPS server operations (PuTTY / Plink / PSCP)—is undertaken strictly at the user's sole risk. The operator assumes full and exclusive liability for all actions, scripts, and operations initiated by themselves or triggered by connected AI models and autonomous agents.Exclusion of Consequential Damages & Data Loss:
The author/developer shall not be held liable for any direct, indirect, incidental, special, consequential, or punitive damages, including but not limited to loss of data, corrupted databases, hardware damage, operating system crashes, downtime, security breaches, unauthorized third-party access, or financial losses resulting from the installation, execution, or network exposure of this software.Network and Tunnel Security:
The operator is solely responsible for properly configuring and securing all network interfaces, reverse proxies, and tunnel endpoints (e.g. via Tailscale VPN, private network isolation, firewalls, or token authentication). Exposing this server to the public internet without adequate authentication is performed entirely at the user's own peril.
Related MCP server: local-assistant-mcp
🌟 Key Features
🛠️ 32 Defrosted MCP Tools
Skill / Module | Icon | Security Profile | Core Capabilities | Tools |
Persistent Memory | 🧠 | 🟢 Safe | SQLite cross-session knowledge storage with keyword search & categories |
|
Tasks & Kanban | 📋 | 🟢 Safe | Persistent task tracking ( |
|
File & Code Ops | 📁 | 🔒 Sandboxed | Line slicing, ripgrep text search, chunk replacement, directory trees |
|
PowerShell & Daemons | 💻 | ⚠️ High Privilege | Synchronous PowerShell execution & background daemon process manager |
|
PuTTY & SSH Remote | 🔑 | 🔒 DPAPI Encrypted | Remote command execution via plink, SCP file transfers, PuTTY GUI window launch |
|
System Diagnostics | 📊 | 🟢 Safe | CPU, RAM, Disk partitions, GPU specs, top processes, Windows Event Logs |
|
Web Scraper & Tools | 🌐 | 🛡️ SSRF Shield | Webpage text extractor with markdown conversion & HTTP endpoint latency check |
|
🚀 Quickstart
Method 1: Launching via Python / uv (Recommended)
Clone the repository:
git clone https://github.com/hellforgex/Mammouth-Defroster-9000.git cd Mammouth-Defroster-9000Launch the Defroster:
Double-click
start_gui.bat
(or executeuv run gui.py/python gui.pyin your terminal)
Method 2: Building Standalone Windows .exe
Double-click
build_exe.bat.The standalone compiled application with full icon integration will be generated in:
dist\MammouthDefroster9000\MammouthDefroster9000.exe
🔗 Connecting with Mammouth.ai
In Mammouth Defroster 9000, select your Exposure Mode (e.g. Tailscale Funnel) with default
/mcproute and click▶ Start Server.Click
📋 Copynext to the calculated Public Endpoint URL (e.g.https://<node>.ts.net/mcp?token=<token>).Open Mammouth.ai:
Navigate to Settings → Custom MCP Servers.
Click Add MCP Server:
Name:
Mammouth Defroster 9000Type:
HTTP/Streamable HTTP(Recommended)URL: Paste your copied endpoint (
https://.../mcp?token=...).
Click Save / Connect.
Start a new chat! Mammouth will immediately authenticate, discover, and utilize your 32 defrosted tools.
Why /mcp (Streamable HTTP) instead of /sse?
We strongly recommend using the default /mcp route. Standard SSE streams can drop URL query parameters (?token=<token>) on subsequent JSON-RPC message calls. /mcp handles authentication cleanly and reliably on every single request until the Mammouth.ai team adds a dedicated Bearer Token field in their custom MCP UI! 😉
📂 Project Architecture
mammouth-defroster-9000/
├── assets/
│ ├── banner.png # Widescreen 8K cybernetic hero banner
│ ├── icon.png # High-res application icon
│ └── icon.ico # Windows multi-resolution taskbar/window icon
├── modules/
│ ├── __init__.py
│ ├── memory.py # SQLite Long-term memory
│ ├── tasks_kanban.py # SQLite Kanban & task tracker
│ ├── file_ops.py # Sandboxed code & file operations
│ ├── shell_processes.py # PowerShell execution & background daemons
│ ├── putty_ssh.py # DPAPI-encrypted PuTTY / Plink / PSCP remote tools
│ ├── system_monitor.py # Hardware & Windows diagnostics
│ └── web_tools.py # SSRF-protected web scraper & status checks
├── config.py # Security & Configuration manager
├── config.example.json # Hardened template configuration
├── hosts.example.json # Template SSH hosts configuration
├── server.py # FastMCP server with Auth & CORS middleware
├── gui.py # CustomTkinter Windows 11 Desktop Cockpit
├── start_gui.bat # Quick launcher script
├── build_exe.bat # PyInstaller one-click builder
├── requirements.txt # Pip dependency manifest
├── pyproject.toml # Project metadata
├── LICENSE # MIT License & Legal Disclaimer
├── .gitignore # Git security & cache filter
└── README.md # Documentation & noskillz Manifesto📄 License
MIT License. Copyright (c) 2026 noskillz (hellforgex).
Governed by the Legal Disclaimer & Limitation of Liability above.
This server cannot be deployed
Maintenance
Related MCP Connectors
Securely control computers you explicitly pair through files, terminals, processes, screenshots, desktop UI/input, clipboard, browser automation, diagnostics, and document tools.
Gives your AI assistant persistent memory and intelligence about your work patterns.
Operate Linux, macOS and Windows from your LLM. Every action runs through an auditable allowlist.
Eyes and hands on real Windows PCs — observe, click, type via Glasswarp API.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables AI clients to securely control and interact with a local Windows machine through 218 configurable tools for files, Git, processes, Windows UI, browser automation, WSL, Office, recovery, skills, and child MCP servers.5 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to perform local development tasks on Windows by reading and editing files, running commands, and controlling browser and desktop tools, all within isolated workspaces. Supports secure remote access via an optional tunnel for ChatGPT clients.MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to control and interact with a local Windows computer through authenticated MCP tools, including file operations, shell commands, process management, HTTP requests, and system/media inspection.-
- FlicenseNot gradedqualityBmaintenanceEnables MCP-compatible AI clients to connect to a Windows machine for file operations, PowerShell execution, Git inspection, task management, memory, and skills.-