listPets
Retrieve a specified number of pets from an API by defining a limit, powered by the OpenAPI to MCP Server for streamlined API interactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | How many items to return at one time |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "How many items to return at one time",
"type": "integer"
}
},
"type": "object"
}