> ## Documentation Index
> Fetch the complete documentation index at: https://docs.razebot.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Server Info & Tools

> Check server status, look up players, search the wiki, and manage saved coordinates.

# Server Info & Tools

> Check server status, look up players, search the wiki, and manage saved coordinates.

## Server info

### Status

Full server status — version, player count, MOTD, and sample player list.

<CodeGroup>
  ```bash Default server theme={null} theme={null}
  ;mc status
  ```

  ```bash Named server theme={null} theme={null}
  ;mc status (name)
  ```
</CodeGroup>

### Ping

Measures latency to the server across multiple packets and shows min/max/avg/jitter and packet loss.

<CodeGroup>
  ```bash Default server theme={null} theme={null}
  ;mc ping
  ```

  ```bash Named server theme={null} theme={null}
  ;mc ping (name)
  ```
</CodeGroup>

### Online players

Lists who is currently online.

```bash theme={null} theme={null}
;mc online [name]
```

### Connection info

Shows the address, host, and port for a registered server.

```bash theme={null} theme={null}
;mc ip [name]
```

***

## Player lookup

### Player info

Shows UUID and basic profile data for a Minecraft username.

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;mc player (username)
  ```

  ```bash Example theme={null} theme={null}
  ;mc player Notch
  ```
</CodeGroup>

### Skins

Links to a player's current skin — 3D render, head, and raw PNG download.

```bash theme={null} theme={null}
;mc skins (username)
```

### NameMC profile

```bash theme={null} theme={null}
;mc profile (username)
```

### Username availability

Check whether a Minecraft username is currently taken or available.

```bash theme={null} theme={null}
;mc availability (username)
```

***

## Wiki

### Search

Search the Minecraft Wiki.

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;mc wiki (query)
  ```

  ```bash Example theme={null} theme={null}
  ;mc wiki enchanting table
  ```
</CodeGroup>

### Crafting recipe

Look up a crafting recipe on the wiki.

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;mc recipe (item)
  ```

  ```bash Example theme={null} theme={null}
  ;mc recipe diamond sword
  ```
</CodeGroup>

***

## Saved coordinates

Save and share in-game coordinates with your server members.

<AccordionGroup>
  <Accordion title="Add coordinates">
    <CodeGroup>
      ```bash Syntax theme={null} theme={null}
      ;mc coords add (name) (x) (y) (z) [dimension] [description]
      ```

      ```bash Example theme={null} theme={null}
      ;mc coords add base 100 64 -200 overworld Main base location
            ;mc coords add nether-fort 500 70 200 nether Blaze farm here
      ```
    </CodeGroup>
  </Accordion>

  <Accordion title="List coordinates">
    ```bash theme={null} theme={null}
    ;mc coords list [name]
    ```
  </Accordion>

  <Accordion title="Delete coordinates">
    <CodeGroup>
      ```bash Syntax theme={null} theme={null}
      ;mc coords delete (name)
      ```

      ```bash Example theme={null} theme={null}
      ;mc coords delete base
      ```
    </CodeGroup>
  </Accordion>
</AccordionGroup>

***

## Mod list

Track which mods are running on your server.

<CodeGroup>
  ```bash List theme={null} theme={null}
  ;mc mods [name]
  ```

  ```bash Add theme={null} theme={null}
  ;mc mods add (mod name) [version]
  ```

  ```bash Remove theme={null} theme={null}
  ;mc mods remove (mod name)
  ```
</CodeGroup>
