getAllCompanies
Retrieve all companies from the Mews MCP server, with optional filters for company IDs, names, creation or update date range, and pagination settings.
Instructions
Returns all companies, optionally filtered by criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
CompanyIds | No | Filter by specific company IDs | |
CreatedUtc | No | Date range filter for company creation | |
Limitation | No | Pagination settings | |
Names | No | Filter by company names | |
UpdatedUtc | No | Date range filter for company updates |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"CompanyIds": {
"description": "Filter by specific company IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"CreatedUtc": {
"description": "Date range filter for company creation",
"properties": {
"EndUtc": {
"description": "End of creation date range (ISO 8601)",
"type": "string"
},
"StartUtc": {
"description": "Start of creation date range (ISO 8601)",
"type": "string"
}
},
"type": "object"
},
"Limitation": {
"description": "Pagination settings",
"properties": {
"Count": {
"description": "Maximum number of companies to return",
"type": "number"
},
"Cursor": {
"description": "Pagination cursor for next page",
"type": "string"
}
},
"type": "object"
},
"Names": {
"description": "Filter by company names",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"UpdatedUtc": {
"description": "Date range filter for company updates",
"properties": {
"EndUtc": {
"description": "End of update date range (ISO 8601)",
"type": "string"
},
"StartUtc": {
"description": "Start of update date range (ISO 8601)",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}