List Feedback Tool
list_feedback_toolList user feedback items from Mapbox Feedback API with filtering, sorting, and pagination. Access reported issues, suggestions, and ratings about map data, routing, and POI details.
Instructions
List user feedback items from the Mapbox Feedback API with filtering, sorting, and pagination. Use this tool to access user-reported issues, suggestions, and feedback about map data, routing, and POI details. Supports comprehensive filtering by status, category, date ranges, trace IDs, and search text. Requires user-feedback:read scope on the access token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | A cursor from a previous response. Use this to fetch the next page of results. | |
| limit | No | The maximum number of feedback items to return (1-1000) | |
| order | No | The sort direction: asc (ascending, default) or desc (descending) | asc |
| format | No | Output format: "json_string" returns raw JSON data as a JSON string that can be parsed; "formatted_text" returns human-readable text. Both return as text content but json_string contains parseable JSON data while formatted_text is for display. | formatted_text |
| search | No | A search phrase. Returns items where the feedback text contains the phrase. | |
| status | No | Filter by one or more feedback statuses. Options: received, fixed, reviewed, out_of_scope | |
| sort_by | No | The field to sort results by. Options: received_at (default), created_at, or updated_at | received_at |
| category | No | Filter by one or more feedback categories | |
| trace_id | No | Filter by one or more trace_id values. At least one must match. | |
| feedback_ids | No | Filter by one or more feedback item IDs. At least one must match. | |
| created_after | No | Return items created after the specified time. Use ISO 8601 format: YYYY-MM-DDTHH:mm:ss.SSSZ | |
| updated_after | No | Return items last updated after the specified time. Use ISO 8601 format: YYYY-MM-DDTHH:mm:ss.SSSZ | |
| created_before | No | Return items created before the specified time. Use ISO 8601 format: YYYY-MM-DDTHH:mm:ss.SSSZ | |
| received_after | No | Return items received by Mapbox after the specified time. Use ISO 8601 format: YYYY-MM-DDTHH:mm:ss.SSSZ | |
| updated_before | No | Return items last updated before the specified time. Use ISO 8601 format: YYYY-MM-DDTHH:mm:ss.SSSZ | |
| received_before | No | Return items received by Mapbox before the specified time. Use ISO 8601 format: YYYY-MM-DDTHH:mm:ss.SSSZ |