List Databases
list_databasesList database schemas or users and their grants on a Laravel Forge server. Provide server id and optionally specify resource type (schemas or users).
Instructions
Database schemas on a server, or the database users and the schemas they can access. Names and grants only — this never reads database contents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Comma-separated fields to sort by; prefix with "-" to reverse (e.g. "-created_at"). | |
| cursor | No | Pagination cursor from a previous response's meta.next_cursor. | |
| filter | No | Field filters, e.g. {"name": "acme-web"}. Supported fields vary by endpoint. | |
| server | Yes | Server id from list_servers. | |
| include | No | Comma-separated relationships to embed (e.g. "tags,latestDeployment"). | |
| resource | No | "schemas" (default) for databases, "users" for database users. | |
| page_size | No | Items per page (Forge default 30). | |
| organization | No | Organisation slug. Optional when the server has a default configured. |