get_currency ignores its own currency filter for payload size: 135 KB returned whether you name one currency or none #231
Labels
No labels
burndown-2026-06
headless
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
c#
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
role/ai
role/creator
role/design
role/director
role/engineer
role/exec
role/human
role/ops
role/qa
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
coilyco-gaming/eco-app#231
Loading…
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?
QA sweep, Eco via Sirens, day 40, 2026-08-12.
Observed
The
currencyparameter adds aselectedblock but never narrows the response:currencies[]lengthget_currency(currency="Sun Coin")(no match)get_currency(currency="2533707")get_currency(currency="Spectres")All three exceed the MCP response cap, so asking about one currency fails the same way asking about all of them does.
modestays"report"even for a single-currency query.The bulk is
currencies(65 KB) +personal(65 KB), each entry carrying a fullholdersobject that is identical boilerplate on every row:185 copies of the same 200-byte unavailability note is ~37 KB on its own.
Also: not-found returns everything
currency="Sun Coin"setsnotFound: trueand then returns the entire 135 KB report anyway. A miss should be a short response.Expected
currencyargument: return that currency plus summary totals. Dropcurrencies[]/personal[].holdersunavailability note to the top level.notFound, return the miss and a suggestion list, not the full corpus.Related
Separate from the attribution bug in the sibling issue — this one is purely response size.