Appearance
Agent Gateway Areas
BETA
Agent Gateway is in BETA, and we're continuing to expand its capabilities. Your feedback helps shape what we build next—reach out to us through Relewise Support.
Areas group the capabilities available through Agent Gateway. Enable the ones your client needs under Allowed Areas.
| Area | What You Can Do |
|---|---|
| Core | Inspect Dataset settings, metadata, and consumption. Core is always allowed. |
| Entities | Find and inspect Products, Variants, Content, Categories, and Brands. |
| Analytics | Review search performance and attributed revenue. |
| Merchandising | Inspect rules and change their enabled state or schedule. |
| Search Tools | Inspect search rules and indexes, and change rule approval. |
| Triggers | Inspect Trigger configurations and criteria. |
Each Area page lists its tools, endpoints, and required inputs. For connection instructions, see Connect to Agent Gateway.
Retrieve Paginated Lists
Pagination is available for Search Term lists, Search Tools rules, Merchandising rules, and Trigger configurations.
Use pageNumber (default 1, one-based) and pageSize (default 50, from 10 through 100). MCP accepts them as top-level tool arguments, REST GET lists use query parameters, and REST Analytics POST bodies nest them under pagination.
Responses include pagination with pageNumber, pageSize, totalResults, and totalPages. Totals describe the full list. Keep the Dataset ID, filters, period, and page size unchanged while advancing pages. Stop when the returned page reaches totalPages or contains no results. Collections can change between calls; pagination does not provide a consistent snapshot.
For example, call list_trigger_configurations with these arguments, replacing the illustrative Dataset ID with one selected from get_me:
json
{
"datasetId": "a01c9fe4-a603-4661-b132-fce9a53be432",
"pageNumber": 1,
"pageSize": 50
}If the returned pagination is {"pageNumber": 1, "pageSize": 50, "totalResults": 73, "totalPages": 2}, call the same tool again with:
json
{
"datasetId": "a01c9fe4-a603-4661-b132-fce9a53be432",
"pageNumber": 2,
"pageSize": 50
}Combine the two configurations arrays and stop after page 2. Entity searches and Search Index lists are not part of this pagination inventory.