getUsersWithQueryParameters
Retrieve a paginated list of users using query parameters like page and limit. Ideal for managing large user datasets efficiently within the MCP YAML API ecosystem.
Instructions
Retrieve a list of users with pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"type": "string"
},
"page": {
"type": "string"
}
},
"required": [],
"type": "object"
}