load-api-schema-by-schemaName
Load a specific API schema by its name and specification ID using the MCP OpenAPI Server, enabling AI-powered IDE integrations to work directly with API definitions in development tools.
Instructions
Load a schema by schemaName
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schemaName | Yes | ||
specId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"schemaName": {
"type": "string"
},
"specId": {
"type": "string"
}
},
"required": [
"specId",
"schemaName"
],
"type": "object"
}