frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hacktoberfest 2025

https://hacktoberfest.com
1•yomacatchy•3m ago•0 comments

GPU Glossary

https://modal.com/gpu-glossary
1•airstrike•4m ago•0 comments

Traffic lights with four colors and a new white light are coming

https://unionrayo.com/en/traffic-lights-color-white-autonomous-cars/
1•fcpguru•8m ago•0 comments

SpaceX Starship flight 11 successful

https://twitter.com/SpaceX/status/1977895039318864296
11•sfjailbird•17m ago•0 comments

China Stands Firm on Trade War Fronts, Targeting Minerals and U.S. Tech

https://www.caixinglobal.com/2025-10-14/trade-war-monitor-oct-13-china-stands-firm-on-trade-war-f...
2•zerosizedweasle•22m ago•0 comments

Japanese in Anime and Manga

https://anime-manga.jp/en/about_anime-manga/
1•rawgabbit•22m ago•1 comments

War on Slop

https://www.jasonthorsness.com/32
1•jasonthorsness•24m ago•0 comments

SpaceX launches Starship megarocket on 11th test flight

https://www.cnn.com/science/live-news/spacex-starship-flight-11-launch-10-13-25
22•JumpCrisscross•25m ago•6 comments

IKEA's Pencil Is the World's Most Stolen Object

https://thisthat3.substack.com/p/why-ikeas-pencil-is-the-worlds-most
1•bookofjoe•26m ago•0 comments

Requiem for a Startup (2011)

https://marksoper.me/Requiem-For-A-Startup-April-30-2011.html
1•gist•31m ago•0 comments

Troubling: AI's self-investment spree sets off bubble alarms on Wall Street

https://finance.yahoo.com/news/very-troubling-ais-self-investment-spree-sets-off-bubble-alarms-on...
2•zerosizedweasle•33m ago•1 comments

Amit Kapila: Parallel Apply of Large Transactions

http://amitkapila16.blogspot.com/2025/09/parallel-apply-of-large-transactions.html
1•PaulHoule•34m ago•0 comments

Show HN: Cinematic pep talks to help you overcome any obstacle

https://apps.apple.com/us/app/dialed-ai-motivated-in-60s/id6478706376
1•marlongrandy•36m ago•0 comments

How to Build a Solar Powered Electric Oven

https://solar.lowtechmagazine.com/2025/10/how-to-build-a-solar-powered-electric-oven/
1•louwrentius•37m ago•0 comments

'Like losing a friend': farewell to Marc Maron's pioneering podcast WTF

https://www.theguardian.com/tv-and-radio/2025/oct/13/like-losing-a-friend-farewell-to-marc-marons...
1•n1b0m•37m ago•0 comments

The Reason So Many Restaurants Taste the Same

https://www.youtube.com/watch?v=rXXQTzQXRFc
2•indigodaddy•38m ago•0 comments

Django Bulk_update Memory Issue

https://blog.pecar.me/django-bulk-update-memory-issue
1•gslin•38m ago•0 comments

Piece of Art a Day – Newsletter

https://floralanxiety.substack.com/p/carnation-lily-lily-rose
1•yuiegi•38m ago•1 comments

CONNECT-IP HTTP Method

https://www.ietf.org/archive/id/draft-cms-masque-connect-ip-00.html
1•teleforce•38m ago•0 comments

Servers with Personality

https://caolan.uk/links/servers/
3•ibobev•41m ago•0 comments

Inverting Matrices and Bilinear Functions

https://www.johndcook.com/blog/2025/10/12/invert-mobius/
1•ibobev•41m ago•0 comments

HighSchool Dances Going Extinct? NJ School Cancels Dance Due to Lack of Interest

https://www.insideedition.com/media/videos/high-school-dances-going-extinct-nj-school-cancels-dan...
4•lando2319•41m ago•0 comments

Generate random points inside a sphere

https://www.johndcook.com/blog/2025/10/11/ball-rng/
1•ibobev•42m ago•0 comments

Mudsill theory

https://en.wikipedia.org/wiki/Mudsill_theory
1•CGMthrowaway•46m ago•0 comments

The Staggering Per-Employee Value of Nvidia

https://www.investopedia.com/here-s-the-staggering-per-employee-value-of-nvidia-11749076
1•SerCe•49m ago•0 comments

Explicit: Validation and documentation library for Rails APIs with MCP support

https://github.com/luizpvas/explicit
1•luizpv9•49m ago•0 comments

StreamingVLM: Real-Time Understanding for Infinite Video Streams

https://arxiv.org/abs/2510.09608
4•badmonster•54m ago•0 comments

Shift towards debt raises potential fallout from the data centre spending spree

https://www.ft.com/content/50f6a373-f7b9-455e-b8ab-129d312822c1
4•zerosizedweasle•57m ago•1 comments

Mokyr, Aghion and Howitt Win 2025 Nobel in Economics

https://www.nobelprize.org/prizes/economic-sciences/2025/press-release/
3•jonbaer•59m ago•0 comments

Hackers can steal 2FA codes and private messages from Android phones

https://arstechnica.com/security/2025/10/no-fix-yet-for-attack-that-lets-hackers-pluck-2fa-codes-...
19•sipofwater•1h ago•11 comments
Open in hackernews

Improving MCP tool call performance through LLM code generation

https://github.com/zbowling/mcpcodeserver
1•zbowling•2h ago

Comments

zbowling•2h ago
I hacked together a new MCP server this weekend that can significantly cut down the overhead with direct tool calling with LLMs inside different agents, especially when making multiple tool calls in a more complex workflow. Inspired by the recent blog post by Cloudflare for their CodeMod MCP server and the original Apple white paper, I hacked together a new MCP server that is a lot better than the Cloudflare server in several ways. One of them being not relying on their backends to isolate the execution of the tool calling but also just generally better support around all the features in MCP and also significantly better interface generation and LLM tool hinting to save on context window tokens. This implementation can also scale to a lot more child servers more cleanly.

Most LLMs are naturally better at code generation than they are at tool calling with code understanding being more foundational to their knowledge and tool calling being pound into models in later stages during fine tuning. It can also burn an excessive number of tokens passing data between tools via LLMs in these agent orchestrators. But if you move the tool calling to be done by code rather than directly by the LLMs in the agents and have the LLMs generate that code, it can produce significantly better results for complex cases and reduce overhead with passing data between tool calls.

This implementation works as an MCP server proxy basically. As an MCP server, it is also an MCP client to your child servers. In the middle it hosts a node VM to execute code generated by the LLM to make tool calls indirectly. By introspecting the child MCP servers and converting their tool call interfaces to small condensed typescript API declarations, your LLM can generate code that invokes these tools in the provided node VM instead of invoking directly and do the complex processing of the response handling and errors in code instead of directly. This can be really powerful with when doing multiple tool calls in parallel or with logic around processing. And since it's a node VM, it has access to standard node models and built in standard libraries there.

One issue is if your tool calls are actually simple, like doing a basic web search or a single tool call, this can a bit more unnecessary overhead. But the more complex the prompt, the more this approach can significantly improve the quality of the output and lower your inference billing costs.