Skip to main content
Glama

Productive-GET-MCP

get_tasks

Retrieve tasks from Productive with filtering, pagination, and sorting options to organize and access project work efficiently.

Instructions

Get tasks with optional filtering and pagination.

Supports Productive's native query-language:

  • Pagination: page_number, page_size

  • Filtering: project_id, or any extra_filters dict

  • Sorting: sort parameter (defaults to most recent activity first)

  • All params are optional; omit to fetch all tasks.

Returns: Dictionary of tasks matching the provided filters (passed through to the Productive API)

Input Schema

NameRequiredDescriptionDefault
extra_filtersNoAdditional Productive query filters (e.g. {'filter[status][eq]': 'open'})
page_numberNoPage number for pagination
page_sizeNoNumber of tasks per page (max 200)
project_idNoProductive project ID to filter tasks by
sortNoSort parameter (e.g., 'last_activity_at', '-last_activity_at', 'created_at', 'due_date'). Use '-' prefix for descending order. Defaults to '-last_activity_at' (most recent first).-last_activity_at

Input Schema (JSON Schema)

{ "properties": { "extra_filters": { "additionalProperties": true, "default": null, "description": "Additional Productive query filters (e.g. {'filter[status][eq]': 'open'})", "type": "object" }, "page_number": { "default": null, "description": "Page number for pagination", "type": "integer" }, "page_size": { "default": null, "description": "Number of tasks per page (max 200)", "type": "integer" }, "project_id": { "default": null, "description": "Productive project ID to filter tasks by", "type": "integer" }, "sort": { "default": "-last_activity_at", "description": "Sort parameter (e.g., 'last_activity_at', '-last_activity_at', 'created_at', 'due_date'). Use '-' prefix for descending order. Defaults to '-last_activity_at' (most recent first).", "type": "string" } }, "type": "object" }

Other Tools from Productive-GET-MCP

Related Tools

    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/druellan/Productive-GET-MCP'

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