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 "Install 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: Secure Local AI Agent 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to interact with the Windows desktop environment, including browser control, clipboard, file management, GitHub, Roblox Studio, OCR, and more, with a privileged approval system for risky actions.
- AlicenseNot gradedqualityBmaintenanceEnables ChatGPT to securely control a Windows PC via a local agent, supporting file operations, Chrome automation, and allowlisted apps with audit logging and approval workflows.MIT
- AlicenseNot gradedqualityBmaintenanceEnables Claude AI to securely access files, run shell commands, and search through a Windows computer with explicit user permission.6MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to control Windows PCs by executing shell commands, managing files, capturing screenshots, and monitoring system information through a comprehensive set of MCP tools.18MIT
Related MCP Connectors
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.
Let AI operate servers without SSH. Choose actions, approve risky changes, and audit every step.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hellforgex/Mammouth-Defroster-9000'
If you have feedback or need assistance with the MCP directory API, please join our Discord server