Skip to main content
Glama

Mews MCP

by code-rabi

getAllTasks

Retrieve all enterprise tasks using filters like TaskIds, DepartmentIds, or date ranges (max 3 months). Mandatory pagination ensures organized data retrieval.

Instructions

Returns all tasks of the enterprise, filtered by identifiers or other filters. REQUIRED: At least one filter must be provided (TaskIds, DepartmentIds, ServiceOrderIds, CreatedUtc, ClosedUtc, or DeadlineUtc). LIMITATIONS: Date range filters (CreatedUtc, ClosedUtc, DeadlineUtc) have a maximum interval of 3 months and 1 day. Array filters (TaskIds, DepartmentIds, ServiceOrderIds) are limited to 1000 items each. The Limitation parameter with Count is mandatory for pagination.

Input Schema

NameRequiredDescriptionDefault
ClosedUtcNoDate range filter for task closure (max 3 months)
CreatedUtcNoDate range filter for task creation (max 3 months)
DeadlineUtcNoDate range filter for task deadlines (max 3 months)
DepartmentIdsNoFilter by department IDs
LimitationYesPagination settings with cursor support
ServiceOrderIdsNoFilter by service order IDs (reservations or product service orders)
TaskIdsNoFilter by specific task IDs

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "ClosedUtc": { "description": "Date range filter for task closure (max 3 months)", "properties": { "EndUtc": { "description": "End of closure date range (ISO 8601)", "type": "string" }, "StartUtc": { "description": "Start of closure date range (ISO 8601)", "type": "string" } }, "type": "object" }, "CreatedUtc": { "description": "Date range filter for task creation (max 3 months)", "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" }, "DeadlineUtc": { "description": "Date range filter for task deadlines (max 3 months)", "properties": { "EndUtc": { "description": "End of deadline date range (ISO 8601)", "type": "string" }, "StartUtc": { "description": "Start of deadline date range (ISO 8601)", "type": "string" } }, "type": "object" }, "DepartmentIds": { "description": "Filter by department IDs", "items": { "type": "string" }, "maxItems": 1000, "type": "array" }, "Limitation": { "description": "Pagination settings with cursor support", "properties": { "Count": { "description": "Maximum number of tasks to return", "type": "number" }, "Cursor": { "description": "Pagination cursor for next page", "type": "string" } }, "required": [ "Count" ], "type": "object" }, "ServiceOrderIds": { "description": "Filter by service order IDs (reservations or product service orders)", "items": { "type": "string" }, "maxItems": 1000, "type": "array" }, "TaskIds": { "description": "Filter by specific task IDs", "items": { "type": "string" }, "maxItems": 1000, "type": "array" } }, "required": [ "Limitation" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/code-rabi/mews-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server