List pending tracked changes across the open project
list_tracked_changesList all pending tracked changes across a project with author, doc, and text, returning change IDs for accepting or rejecting edits.
Instructions
Enumerates every pending tracked-change suggestion in the open project (across all docs), with author name + email, doc path, op kind ('insert' | 'delete'), position, inserted/deleted text, and a stable change_id. Use this to plan an accept_changes or reject_changes call: filter the result by author / doc / kind / text, collect the matching change_id values, then pass them. Tracked changes only — review-panel comments are listed by list_comments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Filter by op kind. | any |
| limit | No | Max changes to return (newest first). | |
| full_text | No | Include the full op text. Default truncates each to 200 chars to keep responses compact. | |
| author_email | No | Filter to changes by this exact author email. | |
| path_contains | No | Filter to changes in docs whose project-relative path matches this substring. | |
| text_contains | No | Case-insensitive substring filter on the inserted/deleted text. | |
| author_id_endswith | No | Filter to changes by user_id matching this suffix (handy when you don't know the email). |