github_activity_get_thread
Retrieve a specific GitHub notification thread by its ID to view its details.
Instructions
Get a thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | thread_id |
Implementation Reference
- src/tools/activity.ts:69-71 (handler)The handler function for github_activity_get_thread. Calls githubRequest with GET method to `/notifications/threads/${args.thread_id}`.
handler: async (args: Record<string, any>) => { return githubRequest("GET", `/notifications/threads/${args.thread_id}`, undefined, undefined); }, - src/tools/activity.ts:66-68 (schema)Input schema for github_activity_get_thread. Takes a required thread_id string parameter.
inputSchema: z.object({ thread_id: z.string().describe("thread_id") }),