I don’t think the Show Me section makes sense, the TOON variant clearly doesn’t have the same information. And the examples in the “How TOON works” section focuses on number of characters instead of tokens. I would think “null” is a single token anyway, why bother replacing it with an uncommon character?
Show HN: Mcptoon – Token-efficient MCP CLI client
31–40 of 50 posts
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#32Why is it replacing true/false with T/F? true/false is already 1 token in all tokenizer I've seen. Even worse is replacing null with ∅. ∅ is a special unicode symbol that takes up 2 tokens compared to the 1 token for null...
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#33Why is it replacing true/false with T/F? true/false is already 1 token in all tokenizer I've seen. Even worse is replacing null with ∅. ∅ is a special unicode symbol that takes up 2 tokens compared to the 1 token for null...
Brand new GitHub account, brand new HN account. I stay far away from projects like this these days, they can easily be malicious. GitHub needs some kind of indicator for projects authored by tenured developers with a real identity.
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#34Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#35Why is it replacing true/false with T/F? true/false is already 1 token in all tokenizer I've seen. Even worse is replacing null with ∅. ∅ is a special unicode symbol that takes up 2 tokens compared to the 1 token for null...
Maybe they want to be tokenizer agnostic? Then they would need to go by character count, right? Despite these inconsistencies, has anyone actually verified their promise? 350 vs. 10.000 tokens would still be very valuable even if they mess up some edge cases
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#36How do unresearched, vibe-coded projects like this reach the front page?
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#37Earlier quoted context omitted.
↲ is also two tokens instead of a simple \n lmao
How is an LF two tokens? Or were you referring to the Unicode symbol? I took their example to mean an actual LF ASCII character but now Ive read your comment, maybe I was being too charitable?
https://github.com/activeing123/mcptoon/blob/main/src/mcptoo...
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#38Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#39I am not going to trust a single number thrown by these AI hustlers written in that salesman voice. Leave alone 97%. > Your agent calls 20 tools. Each returns 500-3,000 tokens wrapped in {"content":[{"type":"text","text":"..."}]}. This is a problem with your tool design. Most MCPs are fully vibe coded without any thought about tool selection. > On a 128K context window, that's 30-55% gone. Not on work. On syntax. Too…
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#40Earlier quoted context omitted.
How is an LF two tokens? Or were you referring to the Unicode symbol? I took their example to mean an actual LF ASCII character but now Ive read your comment, maybe I was being too charitable?
They literally replace \n with the unicode symbol https://github.com/activeing123/mcptoon/blob/main/src/mcptoo...