rndocs is a CLI tool that lets you search and read React Native documentation offline — no browser needed. It downloads the full React Native docs to your machine and gives you instant local search from the terminal.
- Search the entire React Native docs instantly from your terminal
- Read full documentation pages without opening a browser
- Works completely offline after the initial sync
- Integrates with Claude Code and other AI assistants as an MCP server
- Python 3.11 or later
- macOS, Linux, or Windows
pip install rndocsThen download the docs once:
rndocs syncSearch
rndocs search "FlatList"
rndocs search "animation"
rndocs search "handle keyboard"Read a page
rndocs get flatlist
rndocs get animated
rndocs get stylesheetBrowse all pages
rndocs lsRefresh docs
rndocs syncAdd to your Claude Code MCP settings:
{
"mcpServers": {
"rndocs": {
"command": "rndocs-mcp"
}
}
}Claude can now search and read React Native docs directly inside your conversations.
