You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -272,6 +274,51 @@ List Mapbox access tokens for the authenticated user with optional filtering and
272
274
- "List the 5 most recently modified tokens"
273
275
- "Show all public tokens in my account"
274
276
277
+
### Feedback Tools
278
+
279
+
Access user feedback items from the Mapbox Feedback API. These tools allow you to retrieve and view user-reported issues, suggestions, and feedback about map data, routing, and POI details.
280
+
281
+
**feedback_list_tool** - List user feedback items with comprehensive filtering, sorting, and pagination options.
282
+
283
+
**Parameters:**
284
+
285
+
-`feedback_ids` (array of UUIDs, optional): Filter by one or more feedback item IDs
286
+
-`after` (string, optional): Cursor from a previous response for pagination
287
+
-`limit` (number, optional): Maximum number of items to return (1-1000, default varies)
288
+
-`sort_by` (string, optional): Sort field - `received_at` (default), `created_at`, or `updated_at`
289
+
-`order` (string, optional): Sort direction - `asc` (default) or `desc`
290
+
-`status` (array, optional): Filter by status - `received`, `fixed`, `reviewed`, `out_of_scope`
291
+
-`category` (array, optional): Filter by feedback categories
292
+
-`search` (string, optional): Search phrase to match against feedback text
293
+
-`trace_id` (array, optional): Filter by trace IDs
294
+
-`created_before`, `created_after` (ISO 8601 string, optional): Filter by creation date range
295
+
-`received_before`, `received_after` (ISO 8601 string, optional): Filter by received date range
296
+
-`updated_before`, `updated_after` (ISO 8601 string, optional): Filter by update date range
297
+
-`format` (string, optional): Output format - `formatted_text` (default) or `json_string`
298
+
299
+
**Returns:** Paginated list of feedback items with pagination cursors.
300
+
301
+
**feedback_get_tool** - Get a single user feedback item by its unique ID.
302
+
303
+
**Parameters:**
304
+
305
+
-`feedback_id` (UUID, required): The unique identifier of the feedback item
306
+
-`format` (string, optional): Output format - `formatted_text` (default) or `json_string`
307
+
308
+
**Returns:** Single feedback item with details including status, category, feedback text, location, and timestamps.
309
+
310
+
**⚠️ Required Token Scope:**
311
+
312
+
-**Both feedback tools**: Require `user-feedback:read` scope on the access token
313
+
314
+
**Example prompts:**
315
+
316
+
- "List all feedback items with status 'fixed'"
317
+
- "Show me feedback items in the 'poi_details' category created after July 1st"
318
+
- "Get feedback item with ID 40eae4c7-b157-4b49-a091-7e1099bba77e"
319
+
- "Find feedback items containing 'apartment building' in the feedback text"
320
+
- "List all routing issue feedback from the last month"
0 commit comments