Hatchet News

Hey HN!

We realised that LLMs are great at generating code for super popular libraries like React. But they kinda suck at using less popular/newly released libraries, forcing us to stick to established tools and hindering innovation.

There is already a standard for creating documentation for LLMs (llmstxt.org), but in my experience the implementations have not been great so far. `llms.txt` works as a good index of the available pages, but in many cases they link to HTML pages. This is a waste for LLMs to parse through (For example, Hono's [best practices](https://hono.dev/docs/guides/best-practices) page is ~37k tokens, while its core content as Markdown is only ~1k tokens)

To help with this, we built Atlas Docs, a service + MCP server that provides LLMs with clean, LLM-friendly documentation for various libraries.

On the backend, it scrapes pages from documentation sites, processes them into standardized, clean markdown, and stores them into a database. It uses existing `llms.txt`, standardizes links, and crucially, generates a clean `llms.txt` index if the library doesn't provide one.

The MCP server exposes the processed documentation via the [Model Context Protocol](https://modelcontextprotocol.io/). This lets LLMs list search and query the docs and retrieve the relevant pages in clean Markdown format.

This gives LLMs the structured, concise context they need to generate better code and in our limited testing so far, it definitely improves success rate of working with less popular libraries.

If you’re using LLMs for coding, give it a try! You can find instructions to install it with any client that supports MCPs (Cursor, Windsurf, Cline, Claude Desktop etc).

We're actively adding more libraries. Let me know what you'd like to see supported!