createPet
Generate a pet entry by submitting a request body, enabling integration with APIs through the MCP server created from OpenAPI specifications.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestBody | Yes | Parameter: requestBody |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"requestBody": {
"additionalProperties": true,
"description": "Parameter: requestBody",
"properties": {},
"type": "object"
}
},
"required": [
"requestBody"
],
"type": "object"
}