cat-hotel-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CAT_HOTEL_SAVE_DIR | No | Directory for saving game states. Defaults to ~/.cat-hotel-mcp/saves/ | ~/.cat-hotel-mcp/saves/ |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| cat_hotel_guideB | Show AI-facing play guidance for Cat Hotel. |
| cat_hotel_cmdC | Run one Cat Hotel command against a named save. |
| cat_hotel_newC | Start a new Cat Hotel save with an optional deterministic seed. |
| cat_hotel_statusB | Show the current day, weather, stamina, budget, and checked-in cats. |
| cat_hotel_helpC | Show the in-game command list. |
| cat_hotel_exportC | Export a save as a base64 string. |
| cat_hotel_importB | Import a base64 save string into a named save. |
| cat_hotel_list_savesA | List saved games managed by this MCP server. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
All tools have clearly distinct purposes: running commands, managing saves (export/import/list), starting new games, displaying guides/help, and showing status. No overlaps.
All tool names follow a consistent 'cat_hotel_verb_noun' pattern, making it easy to predict functionality.
8 tools is appropriate for a game management server; it covers essential operations without being bloated or insufficient.
Covers core operations: new, status, save/load, commands, guidance. Minor gap: no explicit delete save command, but import can overwrite.