You're just returning the name of the tool, the rest of the information (description/input schema) is definitely lost. Cut to the LLM making mistakes in calling the tool with incorrect schema or calling the wrong tools altogether, recovering, wasting tokens and cycles.
Show HN: Mcptoon – Token-efficient MCP CLI client
21–30 of 52 posts
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#22Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#23Why 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
#24Why 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...
↲ is also two tokens instead of a simple \n lmao
I took their example to mean an actual LF ASCII character but now Ive read your comment, maybe I was being too charitable?
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#25I spent more than one week, as a side project, to add an MCP server to my Cheméo website. Only 4 tools. It took me way more time than expected, I was thinking: "Just wrap the REST API, 2h, done". The MCP payload has nothing to do with the REST API one. Because you need to make it interpretable and context efficient even so it is structured data. It was really interesting work and I suppose very little people are taki…
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#26I spent more than one week, as a side project, to add an MCP server to my Cheméo website. Only 4 tools. It took me way more time than expected, I was thinking: "Just wrap the REST API, 2h, done". The MCP payload has nothing to do with the REST API one. Because you need to make it interpretable and context efficient even so it is structured data. It was really interesting work and I suppose very little people are taki…
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#27How do unresearched, vibe-coded projects like this reach the front page?
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#28Why 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
#29How do unresearched, vibe-coded projects like this reach the front page?
People want a token efficient MCP CLI client. Whether this actually is one is less relevant.
Re: Show HN: Mcptoon – Token-efficient MCP CLI client
#30I thought Codex and Claude Code agents are already token-efficient so writing agents that saves tokens is pointless.