get-api-spec
Generate concise API documentation in minified markdown or full JSON format by extracting Swagger specifications for a specific API group using the Xano MCP Server.
Instructions
Get and convert Swagger specification for an API group to a minified markdown format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apigroup_id | Yes | ID of the API group to get specification for | |
format | No | Output format: 'markdown' for concise documentation or 'json' for full specification | markdown |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apigroup_id": {
"description": "ID of the API group to get specification for",
"type": "string"
},
"format": {
"default": "markdown",
"description": "Output format: 'markdown' for concise documentation or 'json' for full specification",
"enum": [
"markdown",
"json"
],
"type": "string"
}
},
"required": [
"apigroup_id"
],
"type": "object"
}