> For the complete documentation index, see [llms.txt](https://docs.hidencloud.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hidencloud.com/minecraft/adding-a-description-to-the-server.md).

# Adding a Description to the Server

**Steps:**

1. **Open the `server.properties` File**:
   * Go to the root directory of your server and open the `server.properties` file using any text editor.
2. **Find the `motd` Field**:
   * In the file, look for the line that says `motd=`. This is where you can add your server’s description.
3. **Write the Description**:
   * Write the text you want to appear in the server list after `motd=`. Example:

     ```properties
     motd=Welcome to my Minecraft server!
     ```
4. **Customize with Colors and Formatting** (Optional):
   * You can use color and formatting codes with the `§` symbol followed by a number or letter. Here are some examples:

     * **§1** = Dark Blue
     * **§2** = Dark Green
     * **§4** = Dark Red
     * **§l** = Bold text
     * **§o** = Italic text

     Example of a MotD with colors:

     ```properties
     motd=§1Welcome to §2My Minecraft Server!
     ```
5. **Save the Changes**:
   * Save the `server.properties` file after editing.
6. **Restart the Server**:
   * Finally, restart your server so the changes to the MotD take effect and show up in the server list.

### Other formatting / information:&#x20;

{% embed url="<https://minecraft.fandom.com/wiki/Formatting_codes>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hidencloud.com/minecraft/adding-a-description-to-the-server.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
