fldocs is a CLI tool that lets you search and read Flutter and Jetpack Compose documentation offline — no browser needed. It downloads the full docs to your machine and gives you instant local search from the terminal.
- Search Flutter and Jetpack Compose docs instantly from your terminal
- Read full documentation pages without opening a browser
- Works completely offline after the initial sync
- Filter results by source — Flutter or Compose only
- Integrates with Claude Code and other AI assistants as an MCP server
- Single binary — no runtime dependencies required
- macOS, Linux, or Windows
brew install AndroidPoet/tap/fldocsDownload the latest release from GitHub Releases.
Search both
fldocs search "animation"
fldocs search "lazy column"
fldocs search "state management"Search by source
fldocs search "navigation" --source flutter
fldocs search "modifier" --source composeRead a page
fldocs get ui/widgets/basics
fldocs get compose/layouts/basicsBrowse all pages
fldocs ls
fldocs ls --source composeStats
fldocs statsAdd to your Claude Code MCP settings:
{
"mcpServers": {
"fldocs": {
"command": "/usr/local/bin/fldocs",
"args": ["mcp"]
}
}
}Claude can now search and read Flutter and Compose docs directly inside your conversations.