List Pterodactyl servers
ptero_list_serversList game servers accessible by your Pterodactyl API key, showing identifiers, node, allocation, and resource limits. Use it to get a server ID for other tools; supports pagination via 'page'.
Instructions
List the game servers this Pterodactyl API key can access, with their short identifiers, node, primary allocation and resource limits.
Use this first when you do not already know a server identifier, or when a call fails with "not found" — every other ptero_* tool takes that identifier as its server argument.
This does NOT report whether a server is running: status here is the panel lifecycle field (installing/suspended/etc.) and is null for a normal server whether it is up or down. Call ptero_get_server_resources for the live power state.
Results are paginated by the panel (50 per page). Pass page to fetch further pages; has_more tells you whether any remain.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number. Omit for the first page. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Current page number. | |
| count | Yes | Number of servers on this page. | |
| total | No | Total servers across all pages, when the panel reports it. | |
| servers | Yes | Servers this API key can access, for the requested page. | |
| has_more | Yes | True when further pages exist; request them with `page`. | |
| total_pages | No | Total number of pages. |