Show HN: Building a Deep Research Agent Using MCP-Agent
thealliance.ai
Show HN: Building a Deep Research Agent Using MCP-Agent
1–10 of 21 posts
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#2Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#3A good model for planner seems pretty important, what models are best?
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#4A good model for planner seems pretty important, what models are best?
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#5A good model for planner seems pretty important, what models are best?
based on the article, it seems like a good reasoning model like gpt5 or opus 4.1 might be good choices for the planner. I wonder if the gpt oss reasoning models would do well
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#6Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#7None the less, I tried to find the actual APIs/service/software used for the "search" part, as I've found that to be the hardest to actually get right (at least for as-local-as-possible usage) for my own "Deep Research Agent".
I've experimented with Brave's search API which worked OK, but seems pricey for agent usage. Currently experimenting with using my own (local) YaCy instance right now, which actually gives me higher quality artifacts at the end, as there are no rate-limits and the model can do hundreds of search calls without me worrying about the cost. But it isn't very quick at picking up some stuff like news and more, otherwise works OK too.
What is the author doing here for the actual searching? Anyone else have any other ideas/approaches to this?
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#8A good model for planner seems pretty important, what models are best?
based on the article, it seems like a good reasoning model like gpt5 or opus 4.1 might be good choices for the planner. I wonder if the gpt oss reasoning models would do well
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#9I gotta say, having white blurry blobs of something in the background floating behind white/grey text maybe wasn't the best design-choice out there. None the less, I tried to find the actual APIs/service/software used for the "search" part, as I've found that to be the hardest to actually get right (at least for as-local-as-possible usage) for my own "Deep Research Agent". I've experimented with Brave's search API wh…
So the core idea is the Deep Orchestrator is pretty unopinionated on what to use for searching, as long as it is exposed over MCP. I tried with a basic fetch server that's one of the reference MCP servers (with a single tool called `fetch`), and also tried with Brave.
I think the folks at Jina wrote some really good stuff on the actual search part: https://jina.ai/news/a-practical-guide-to-implementing-deeps... -- and how to do page/url ranking over the course of the flow. My recommendation would be to do all that in an MCP server itself. That keeps the "deep orchestrator" architecture fairly clean, and you can plug in increasingly sophisticated search techniques over time.
Re: Show HN: Building a Deep Research Agent Using MCP-Agent
#10Earlier quoted context omitted.
based on the article, it seems like a good reasoning model like gpt5 or opus 4.1 might be good choices for the planner. I wonder if the gpt oss reasoning models would do well
Gemini 2.5 Pro is also a great reasoning model, I still prefer it over GPT 5