List a board's files
list_board_filesUse when you need the exact files in a known public board (KiCad source, docs, fabrication outputs, gerbers) before read_file, or to show a project's layout. Returns paths, extensions, sizes, and roles, up to 100 per call; pass the returned cursor only when more are needed. Returns paths only, never contents. Do not guess paths; for wiring prefer read_schematic and for parts prefer get_bom over reading raw files.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | A public board: handle/slug (e.g. alice/keezyboost40) or a boardrepo.com URL. Discover it with search_boards; do not invent one. | |
| cursor | No | Opaque pagination cursor from a previous call; pass to fetch the next page. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | ||
| files | Yes | ||
| nextCursor | Yes | ||
| hasNextPage | Yes |