Outsourcing an Agent's Ability to "Look Up What It Doesn't Know"──Firecrawl Wires a Code-Specific Search Box to Over 700,000 Primary Sources
The weak spot of coding agents lies in the quality of the "material they have to look things up in." Firecrawl's newly released Developer Index is a search API targeting only primary sources──repositories, issues, PRs, docs, and more──totaling over 700,000. We unpack it, including its self-reported
Work you hand off to a coding agent gets stuck because it calls an API that doesn't exist, or writes code based on documentation from two years ago──plenty of developers have run into exactly this. More often than not, the cause isn't how smart the model is, but the quality of the "material it has to work from." The general-purpose web search an agent throws out on its own tends to surface secondhand blog posts and SEO articles at the top, and often never reaches the primary sources: the GitHub issues and the actual documentation.
What tries to swap out this "ability to look things up" for a purpose-built tool is Firecrawl's newly released Developer Index. It's a search API designed for coding agents, letting you query in natural language against nothing but primary sources──repository READMEs, issues, merged pull requests, and official documentation. In its announcement on X, the company framed it as "built to strengthen coding agents," and it was released in late August 2026.
A Design That "Avoids Secondhand Sources and Pulls Only Primary Ones"
Developer Index indexes more than 70,000,000 artifacts. The breakdown it cites: READMEs from public repositories, GitHub issues, merged pull requests, plus well-maintained documentation sites and OpenAPI specs. Many sources are updated daily and, per the company, ingested within 24 hours of publication.
The aim is clear-cut: to let an agent answer questions like "how does this library behave," "what's this API's contract," "what does this error message mean," and "is this a known bug" by going to the source itself rather than a blog roundup. It's the idea of deliberately narrowing the scope in order to reach the territory that conventional general-purpose web search struggles to pick up.
An In-House Benchmark Showing the "Odds the Right Answer Lands in the Top Results"
Firecrawl compared, on an evaluation set called "DevDex" gathered from 1,179 real developer questions, the rate at which the correct primary source appears in the top 10 search results (recall@10). The numbers are as follows.
| Search method | recall@10 |
|---|---|
| Firecrawl Developer Index | 0.63 |
| Firecrawl Search (general-purpose) | 0.58 |
| Parallel | 0.57 |
| Mintlify | 0.54 |
| General-purpose web search (control) | 0.45 |
The company's claim is that it beat the next-best external provider by roughly 10 points. Look at the breakdown, though, and its strengths and weaknesses split sharply.
- Repository discovery: 0.76 (its strongest suit)
- Issues and PRs: 0.66
- Documentation lookup: 0.47 (its weakest)
While it's strong at pinpointing "which repository you should be looking at," its accuracy at pulling the relevant passage from documentation stalls at just under half. This is a point worth discounting.
How to Wire It Into Your Own Agent
Several onboarding paths are provided. From the CLI, a single line──npx firecrawl-cli@latest setup developer-index──sets it up, and it can also be used via the Model Context Protocol (MCP). There are Python and Node.js SDKs as well, built so that major agents like Claude Code, Cursor, Windsurf, and Codex can search it directly. The hosted MCP server requires no authentication and exposes both a dedicated developer-search tool and general-purpose search.
To hit the API directly, you pass a natural-language query and a result count k to the developer-oriented search endpoint (/v2/search/developer). You can also narrow by types to doc, issue, pull_request, or readme, or tighten the target with conditions like repos, min_stars, language, and license. What comes back is a stable ID, a URL, and a Markdown excerpt of the matched text. No API key is needed to get started, and there's a free tier. Pricing is usage-based at "2 credits per 10 results (rounded up)," so 11–20 results costs 4 credits.
A "Selling Search" Layer Born of the Agent Era
What this move signals is that the capability of coding agents has entered a stage where it's determined not by the model itself but by "how you feed it context." If the quality of retrieval sways the correctness of the final code, then value accrues to services that specialize in optimizing exactly that. In fact, now that Claude Code's Skills and MCP are in place and agents can autonomously call external tools, this kind of "selling search" layer has become far easier to establish. Instead of building your own documentation index, you get another option: renting a search window onto primary sources for a monthly credit allotment.
That said, there are points to discount. First, the scorecard above is self-reported, based on an evaluation set (DevDex) that Firecrawl itself assembled; independent third-party verification isn't yet in place. recall@10 only measures "whether the correct source lands in the top 10"──a separate matter from whether the agent ultimately wrote correct code. Second, since you're sending your query text to an external index, the data-governance question of how internal code and unpublished context are handled is unavoidable. Third, usage-based billing has a structure where "the more you keep the agent running, the more your search costs pile up"──like the token bill, it weighs in as a running cost of unattended operation. There's also a view that "renting a convenient search window" and "deepening your dependence on a specific vendor" are two sides of the same coin.
Even so, whether an agent can reach the correct primary source on its own translates directly into the quality of what it produces. Now that switching models has become routine, keeping the retrieval layer as a swappable component is an idea worth remembering in the practical work of running agents.
References: Developer Index: Code & Docs Search API for Coding Agents (Firecrawl) / Developer Index documentation (Firecrawl Docs) / Firecrawl official X (announcement)