# How to Set Server Tags on Your BeamMP Server (/docs/beammp/tag-guide)



import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
import { Step, Steps } from 'fumadocs-ui/components/steps';

Tags let players filter and find your server in the BeamMP browser. They appear as clickable filters.

Set Tags [#set-tags]

<Tabs items={['Via Startup Tab', 'Via Config File']}>
  <Tab value="Via Startup Tab">
    <Steps>
      <Step>
        Open Startup [#open-startup]

        In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Startup** in the sidebar.
      </Step>

      <Step>
        Set the Tags field [#set-the-tags-field]

        Find the **Tags** field and enter comma-separated tags (e.g., `Freeroam,Modded,Lang:English`).
      </Step>

      <Step>
        Restart [#restart]

        Restart from **Console** to apply.
      </Step>
    </Steps>
  </Tab>

  <Tab value="Via Config File">
    <Steps>
      <Step>
        Stop the server [#stop-the-server]
      </Step>

      <Step>
        Edit ServerConfig.toml [#edit-serverconfigtoml]

        In **Files**, open `ServerConfig.toml`:

        ```toml
        Tags = "Freeroam,Modded,Lang:English"
        ```
      </Step>

      <Step>
        Save and start [#save-and-start]
      </Step>
    </Steps>
  </Tab>
</Tabs>

Max 100 characters total. Not case-sensitive.

Common Tags [#common-tags]

| Tag            | Use for                                            |
| -------------- | -------------------------------------------------- |
| `Freeroam`     | Open driving / free roam                           |
| `Racing`       | Racing-focused                                     |
| `Drift`        | Drifting servers                                   |
| `Roleplay`     | RP servers                                         |
| `Police`       | Law enforcement roleplay                           |
| `Offroad`      | Off-road driving                                   |
| `Events`       | Event servers                                      |
| `Modded`       | Servers with vehicle/map mods                      |
| `Lang:English` | Language (also `Lang:German`, `Lang:French`, etc.) |

> 📝 **Note:** Tags only show in the browser when `Private = false`. If your server is private, tags are ignored.

Related Guides [#related-guides]

* [Server Configuration](/docs/beammp/server-config)
* [Rename Server](/docs/beammp/rename-server)
