browse-apis
Explore and filter APIs within a specific API group, using pagination, search terms, and sorting options for efficient navigation and management within the Xano MCP Server.
Instructions
Browse APIs in a specific API group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apigroup_id | Yes | ID of the API group to browse | |
order | No | Sort order | |
page | No | Page number for pagination | |
per_page | No | Number of items per page | |
search | No | Search term to filter APIs | |
sort | No | Field to sort by |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apigroup_id": {
"description": "ID of the API group to browse",
"type": "string"
},
"order": {
"description": "Sort order",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"per_page": {
"description": "Number of items per page",
"type": "number"
},
"search": {
"description": "Search term to filter APIs",
"type": "string"
},
"sort": {
"description": "Field to sort by",
"enum": [
"created_at",
"updated_at",
"name"
],
"type": "string"
}
},
"required": [
"apigroup_id"
],
"type": "object"
}