wisp-mcp
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., "@wisp-mcpwhat's the CPU and memory usage on my Rust server?"
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.
Wisp MCP — connect a WISP game panel to AI
English · Français
Wisp MCP is a source-available Model Context Protocol server for the WISP game panel Client API. It lets MCP-compatible AI clients inspect and manage game servers through the panel instead of giving the AI unrestricted access to the host machine.
It is hosting-provider agnostic. If your hosting company gives you a WISP panel and a Client API token, use that panel URL. No provider-specific code path is required.
Start with the visual guide: https://breezedelegate.github.io/wisp-mcp/
Do I have a WISP panel?
If your game-server panel looks like this, it is likely WISP:

Typical WISP client dashboard. Hosts can white-label WISP, so colors, logo and domain may differ.
If you are unsure, ask your host: “Does my server use WISP, and can I create a WISP Client API token?” See How to recognize WISP.
Related MCP server: CS2 RCON MCP Server
What it can do
inspect server state, CPU, memory, disk and network usage;
browse paginated directories, read configs and tail logs;
search large files and read bounded chunks without flooding the model context;
create files, or safely edit existing plugin/config files with SHA-256 change detection;
send console commands;
start, stop and restart servers;
create and inspect backups;
manage databases when enabled;
inspect audit logs and common panel state;
run locally with stdio or remotely with Streamable HTTP;
keep destructive operations behind a separate capability switch.
Because it targets WISP rather than one game, the same MCP can be used with Rust, Minecraft and other game servers managed by WISP.
Install on a Linux VPS
For Debian 12 or Ubuntu 24.04+:
curl -fsSL https://raw.githubusercontent.com/BreezeDelegate/wisp-mcp/main/install-vps.sh | sudo bashThe installer asks for:
the WISP panel URL supplied by your host;
an optional default server ID;
your WISP Client API token in a hidden terminal prompt.
It creates a dedicated system user, stores credentials outside Git, and runs wisp-mcp doctor before reporting success.
For a deeper read-only API compatibility check, run wisp-mcp compatibility. It verifies the minimal response contract used by the MCP without modifying the game server.
For ChatGPT, install the OpenAI tunnel helper at the same time:
curl -fsSL https://raw.githubusercontent.com/BreezeDelegate/wisp-mcp/main/install-vps.sh | sudo bash -s -- --with-openaiConnect your AI client
Wisp MCP is not tied to one model vendor. It implements standard MCP transports.
ChatGPT
Use OpenAI Secure MCP Tunnel for an always-on private VPS, then add the MCP as a custom app in ChatGPT Developer Mode. See ChatGPT setup.
Claude Code
Claude Code can launch Wisp MCP directly. If Wisp MCP is on a remote VPS, use SSH as the stdio command:
claude mcp add --scope user wisp -- ssh user@your-vps /usr/local/bin/wisp-mcp-stdioThen verify:
claude mcp get wispOther MCP clients
Use one of the standard transports:
stdio:
/usr/local/bin/wisp-mcp-stdioor an SSH command that launches it remotely;Streamable HTTP:
wisp-mcp servebehind authentication and a secure network boundary;MCP Bundle: download the
.mcpbartifact from the latest release if your client supports bundles.
Local quick start
Requirements: Python 3.11+ and a WISP Client API token.
git clone https://github.com/BreezeDelegate/wisp-mcp.git
cd wisp-mcp
./setup.shOr inside an existing Python environment:
python -m pip install .
wisp-mcp init
wisp-mcp doctor
wisp-mcpConfiguration
Required values:
WISP_PANEL_URL=https://panel.example.com
WISP_API_TOKEN=your_tokenOptional default server:
WISP_SERVER_ID=ABCDEFGHWrite capabilities are opt-in:
WISP_ALLOW_COMMANDS=true
WISP_ALLOW_FILE_WRITES=true
WISP_ALLOW_POWER=true
WISP_ALLOW_BACKUPS=true
WISP_ALLOW_DATABASES=false
WISP_ALLOW_SERVER_SETTINGS=false
WISP_ALLOW_DESTRUCTIVE=falseKeep WISP_ALLOW_DESTRUCTIVE=false during normal administration. File deletion, backup restore/delete, database deletion/password rotation, force-kill and panel update actions require the separate destructive gate.
AI-guided setup
For a beginner, copy this into an MCP-capable assistant:
Help me install Wisp MCP from https://github.com/BreezeDelegate/wisp-mcp. Read the current repository documentation first and reply in my language. First help me confirm that my game host uses the WISP panel. Then guide me one step at a time and do as much of the technical work as possible. Never ask me to paste API tokens, passwords, private keys, or tunnel runtime keys into chat; tell me exactly where to enter secrets directly in the terminal or provider UI. Use the smallest sensible Linux VPS if I need an always-on machine. Verify the WISP connection with wisp-mcp doctor before connecting my AI client. Start read-only, enable only the capabilities I need, keep destructive operations disabled by default, back up before risky changes, and verify status and logs after every change.See AI-guided setup and VPS sizing.
Distribution and discovery
Wisp MCP is published in the official MCP Registry as io.github.BreezeDelegate/wisp-mcp.
Releases include:
Python wheel;
source archive;
.mcpbMCP Bundle.
Registry publishing is automated from signed GitHub release workflows using OIDC.
Large files and safe edits
For large source files or logs, start with bounded tools to locate the relevant code, but do not optimize away context needed for correctness. If a change depends on global state, distant hooks, shared classes, control flow, or interactions across the file, read the complete file even if it costs more tokens.
find_in_filereturns small line-numbered excerpts around literal matches;read_file_chunkreturns a bounded character range plusnext_offset_chars;file_fingerprintreturns SHA-256, byte, character, and line counts without returning content.
Regular read_file responses also include a SHA-256 fingerprint. For existing files, use that fingerprint with:
safe_write_filefor a deliberate whole-file replacement;replace_in_filefor a small exact replacement inside a large file.
Both guarded write tools re-read the file before writing and verify the stored content afterward. This is optimistic concurrency rather than an atomic filesystem lock, because the WISP Client API does not expose a compare-and-swap write primitive through this integration.
Listings for servers, directories, backups, databases, and audit logs support bounded pagination so clients do not need to load an unbounded collection at once.
Security model
API and MCP tokens are never returned by tools. Remote HTTP fails closed unless authentication is configured. File paths and object IDs are validated, writes are bounded, and changing capabilities are opt-in.
The server also publishes operating instructions to MCP clients: inspect first, back up before risky changes, make the smallest change, then verify status and logs.
Report security issues privately as described in SECURITY.md.
Documentation
FAQ
Is this tied to a hosting company?
No. The integration targets the standard WISP Client API. Use the panel URL and Client API token provided by whichever host runs your WISP panel.
Is this tied to Rust or Minecraft?
No. It manages the game-server environment exposed by WISP, so the same integration can be used for different games.
Does every AI app work with it?
No. The AI app must support Model Context Protocol. Wisp MCP supports the standard stdio and Streamable HTTP deployment patterns, which makes it compatible with common MCP clients without vendor-specific server code.
Can it modify my server?
Only when the relevant capability is enabled. Read-only is the default, and destructive operations have a separate switch.
License
Wisp MCP is distributed under the PolyForm Noncommercial License 1.0.0. Commercial licensing requires separate permission from the copyright holder.
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
- Alicense-qualityDmaintenanceA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.492MIT
- Alicense-qualityDmaintenanceA Model Context Protocol server that allows management of Counter-Strike 2 game servers via RCON commands using natural language.10MIT
- Alicense-qualityDmaintenanceA server that implements the Model Context Protocol, providing a standardized way to connect AI models to different data sources and tools.1111MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP (Model Context Protocol) server for Appwrite
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/BreezeDelegate/wisp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server