untrack
Stop monitoring a specific pull request by providing its URL, removing it from your tracked list.
Instructions
Stop tracking a pull request. Removes the PR from your monitored list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prUrl | Yes | Full GitHub PR URL to untrack (e.g. https://github.com/owner/repo/pull/123) |
Implementation Reference
- packages/mcp-server/src/tools.ts:227-229 (registration)Comment explaining that the `untrack` tool was removed in v4 (#1133). Users should use `shelve`/`unshelve` instead.
// The v1→v2 `untrack` and `read` stubs were removed in v4 (#1133). Use // `shelve`/`unshelve` to hide PRs from the daily digest. MCP clients that // hard-coded these tool names will get a "tool not found" error. - Comment in track.ts noting that `runUntrack` stub was removed in v4 (#1133). Users should use `shelve`/`unshelve`.
* The `runUntrack` v1→v2 stub was removed in v4 (#1133). Use `shelve`/ * `unshelve` to hide a PR from the daily digest.