api_schemas
Extract parameters, request body, and responses using the operationId from ACOMO API schemas. Simplify API exploration and operation analysis within the ACOMO MCP Server.
Instructions
operationIdからparameters/requestBody/responsesを抜粋
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operationId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"operationId": {
"type": "string"
}
},
"required": [
"operationId"
],
"type": "object"
}