bug(issues): list labels_filter is silently ignored - returns the full unfiltered issue list #142
Labels
No labels
breaking
bug
documentation
enhancement
epic
good first issue
help wanted
refactoring
resolution/duplicate
resolution/invalid
resolution/wontfix
security
severity/critical
severity/high
severity/low
severity/medium
status/abandoned
status/blocked
status/needs-decision
status/needs-info
status/needs-verification
testing
upstream
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
sixfold-space/madtea#142
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Observed (2026-07-15, MCP madt_issues on sixfold_space/madtea)
madt_issues action=list state=all labels_filter=<X> limit=50returned the identical, complete, UNFILTERED issue list ("Showing 50 of 134") for every filter tried:labels_filter=release-prep(label name)labels_filter=status/launch-gated(scoped label name)labels_filter=1974638andlabels_filter=1974644(label IDs)All four responses were byte-identical to an unfiltered list. The raw API passthrough proves the backend filter works:
madt_api_call GET /repos/{owner}/{repo}/issues?labels=release-prep&state=allreturned exactly the 8 correct issues. So the typed list path drops/never forwards the labels param.Why this is nasty
A silently-ignored filter is worse than an error: the caller believes they are looking at "all issues with label X" and makes decisions on the full backlog instead. This is the same defect class as #127 (params swallowed instead of erroring), except here the param is fully applicable to the action - it just doesn't reach the request.
Asks
labels_filteron the issues list path (CLI--labelstoo if it shares the plumbing - verify both surfaces).milestone_filter,assignee,mentioned_by,created_by,since/beforealready had #91/#107) for the same forward-the-param gap.Acceptance
labels_filterby name and by ID both narrow the list on CLI and MCP.