getAuxiliaryTable
Retrieve auxiliary table data with search and pagination support for structured queries on the mcp-comexstat server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
pageSize | No | ||
search | No | ||
table | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"type": "number"
},
"pageSize": {
"type": "number"
},
"search": {
"type": "string"
},
"table": {
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}