getPetById
Retrieve pet details by providing a unique pet ID using the MCP server generated from OpenAPI specifications for API integration with AI assistants.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
petId | Yes | Enhanced pet ID description from overlay |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"petId": {
"description": "Enhanced pet ID description from overlay",
"type": "integer"
}
},
"required": [
"petId"
],
"type": "object"
}