Readit News logoReadit News
pzullo commented on Launch HN: VibeFlow (YC S25) – Web app generator with visual, editable workflows    · Posted by u/alepeak
pzullo · 4 days ago
Why did you use convex as backend?

Deleted Comment

pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
revskill · a month ago
Need a typescript alternative
pzullo · 18 days ago
pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
MutedEstate45 · a month ago
Thanks for the mention! I'm the author of Mcp-error-formatter, which was mentioned above. Exactly right about the client/server complexity. I've been working on this exact problem. Client-side heuristics can catch timeouts and HTTP codes, but nuanced business logic errors need server cooperation.

The interesting part is dual error representation: devs need full stack traces for debugging, but LLMs need clean structured metadata for retry decisions. Plus you want error telemetry flowing to observability systems.

Question for the mcp-use authors: How do you handle error propagation in multi-server setups? If Server A times out but Server B is healthy, does the agent know which server failed and whether to retry or switch servers? And are you capturing error patterns to identify flaky servers or consistently failing tool calls? The retry orchestration across multiple MCP servers seems like a really interesting problem.

pzullo · a month ago
Hey, awesome work with the error formatter, as explained above I think error creation falls more under the server responsibilities if it contains any logic about the error (e.g. is retryable). It would be interesting to hear your opinion on a format for LLM side errors.

Regarding the multi server failure case: (without server manager) today if one of the server dies the agent will keep going, I do not think this is a particularly thought through decision, probably the client should error out, or let the agent know that the server is dead. (with server manager) the agent will try to connect to the dead server, get an error, possibly retry, but if the server keeps being unable to connect to, the agent will eventually bail. Indeed it is an interesting problem. How do you see the responsibility split here ?

Regarding the flakyness, ultimate dream, but requires some more work, I think that monitoring this is something that the client has a privileged position of doing, we will do it for sure. I think this is going to be great feedback for companies building servers. Happy to coordinate on ideas on how to do this best.

pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
farkin88 · a month ago
The prod-readiness concerns are fair, but mcp-use fills a real gap in the MCP stack: orchestration across many servers with far less boilerplate than the official SDK. Even if the agent is as another commenter fairly pointed out, just a LangChain wrapper, the six-line setup and server manager are a nice DX upgrade.

What’s still missing is structured error semantics. Right now, when a tool explodes the LLM only sees a raw stack trace, so it can’t decide whether to retry or bail. Today, I saw another Show HN post on MCP here: https://news.ycombinator.com/item?id=44778968 which converts exceptions into a small JSON envelope (error, details, isRetryable, etc.) that agents can interpret. Dropping that into mcp-use’s client loop would give you observability + smarter retries for almost free.

I might be missing some important nuances here between client side and server side MCP error handling, which I’ll leave to the authors to discuss. Just thought there might be a good open source collab opportunity here.

pzullo · a month ago
Hey thanks for the comment, the work from https://github.com/bjoaquinc/mcp-error-formatter is great. I will definitely put some version of this into one of the next releases. Just opened an issue mentioning this thread.

The problem with the package above is that it is server side, and I think it should be. Server is the one that knows (has responsibility to know) if a tool is retryable and has informations about the error, and fairly so.

I see though how some sort of improved error formatting could be introduced in the client as well, but it shouldn't contain any logic about the error, rather format the error in the best way possible (in the direction in which it is best understandable by LLMs).

pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
redhale · a month ago
In my case I'm creating the agent in a custom way (using the BAML framework), so I don't need the agent part of your solution. FastMCP works ok but has some issues, so if you have a better client than can be used as a replacement, I would potentially be interested.
pzullo · a month ago
I'd love to hear what you do not like about their client. What issues does it have ?
pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
maxarnold · a month ago
Introduced the tool at Porsche last week. Looks like there might be a big corporate partnership coming up
pzullo · a month ago
Nice! shoot us a message on Linkedin :)
pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
aanthonymax · a month ago
Interesting project! Today, AI projects move progress forward. Good luck to you!
pzullo · a month ago
Thanks :)
pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
redhale · a month ago
I'm confused -- I didn't see a single example in you readme or docs that uses the client WITHOUT your agent. Trying to understand if this is an alternative to FastMCP. I don't want your agent.
pzullo · a month ago
Hey, we have an example in our readme and docs about how to build your custom agent. but you are right, we should probably fill the client section of the documentations with examples on how to use the client API in more details. Will be done!

The extent to which this is an alternative to FastMCP depends a bit on your use case. As long as you are not interested at all in any agent, they are alternative, but if you want to create an agent we will be closer to what you need. We designed our client with the creation of an agent in mind, and will continue to do so, the design is geared towards this and we have examples of how to use this in our agent.

FastMCP client is very similar today. I see the influence of our design in their implementation. We spoke to the authors a month back and the position was that they wanted something they could use to test their own servers, so the ultimate intention was different. Not sure where it is going to go.

pzullo commented on Show HN: Mcp-use – Connect any LLM to any MCP   github.com/mcp-use/mcp-us... · Posted by u/pzullo
d4rkp4ttern · a month ago
For what it’s worth, several months ago, in Langroid (an agent framework that works with any LLM) we added an adaptor using FastMCP that translates between Langroid’s Tools and MCP tools, so effectively it’s a way to connect any LLM to any MCP server.

Https://github.com/langroid/langroid

MCP integration:

https://langroid.github.io/langroid/notes/mcp-tools/

pzullo · a month ago
We designed this slightly differently where one can use the client directly an not only in our agent, the structure is more focused around the MCP functionality.

u/pzullo

KarmaCake day97November 7, 2021View Original