unstar_thread
Remove a star from an Ed Discussion thread to unmark it as important or unfavorite it for future reference.
Instructions
Remove star from a thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | Global thread ID |
Implementation Reference
- src/api.ts:197-199 (handler)The handler function that executes the unstar_thread tool logic by sending a POST request to the API.
async unstarThread(threadId: number): Promise<void> { await this.request("POST", `threads/${threadId}/unstar`); } - src/index.ts:285-285 (registration)The registration of the unstarThread API method within the tool actions mapping.
unstar: api.unstarThread,