From e515921df272844c8c5c62e5c2283da98a7cc3d7 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 4 May 2026 11:40:00 +0000
Subject: [PATCH] Document console chat visibility commands
Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/c900b80f-7e2c-486b-abbf-2c190a9bb750
Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
---
docs/guide/configuration.md | 12 +++++++++
docs/guide/usage.md | 51 +++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/docs/guide/configuration.md b/docs/guide/configuration.md
index a21c40e3..aa04e050 100644
--- a/docs/guide/configuration.md
+++ b/docs/guide/configuration.md
@@ -1132,6 +1132,18 @@ Coordinate = { x = 145, y = 64, z = 2045 }
- **Default:** `true`
+#### `Display_Chat`
+
+- **Description:**
+
+ Set this to `false` if you want MCC to keep receiving chat without printing it in the console.
+
+ This only affects console output. It does not stop bots from receiving chat, and it does not turn off chat file logging.
+
+- **Type:** `boolean`
+
+- **Default:** `true`
+
#### `History_Input_Records`
- **Description:**
diff --git a/docs/guide/usage.md b/docs/guide/usage.md
index f72062f9..b165ccd5 100644
--- a/docs/guide/usage.md
+++ b/docs/guide/usage.md
@@ -882,6 +882,24 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
+
+clear-console
+
+- **Description:**
+
+ Clear the visible console output.
+
+ In TUI mode this clears the log panel. In the classic console it clears the terminal screen.
+
+- **Usage:**
+
+ ```
+ /clear-console
+ /cc
+ ```
+
+
+
connect
@@ -1584,6 +1602,39 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
+
+console-chat
+
+- **Description:**
+
+ Temporarily show or hide chat in the console.
+
+ This changes the current session only. If you want the same behavior every time MCC starts, use [`Console.General.Display_Chat`](configuration.md#display_chat).
+
+- **Usage:**
+
+ ```
+ /console-chat
+ /console-chat on
+ /console-chat off
+ ```
+
+- **Examples:**
+
+ Hide chat until you turn it back on:
+
+ ```
+ /console-chat off
+ ```
+
+ Show chat again:
+
+ ```
+ /console-chat on
+ ```
+
+
+
debug