What problem does it solve?
Querying the NCBI Datasets v2 API directly returns large, deeply nested JSON payloads that are hard to scan. This Skill submits targeted requests to assembly, genome, and taxonomy endpoints and returns compact, truncated summaries instead of raw dumps.
Core Features & Use Cases
- Targeted REST Queries: Call any Datasets v2 path (e.g., genome/taxon/9606/dataset_report) with query params, timeouts, and record extraction via record_path.
- Compact Output Control: Limit result size with max_items and max_depth, returning either compact records, a summary, or a text head.
- Optional Raw Saving: Set save_raw=true to persist the full JSON or text response to disk and receive the saved file path.
- Use Case: A researcher asks for the genome assembly reports for human (taxon 9606); the Skill fetches the dataset_report endpoint and returns the first 10 compact records for quick review.
Quick Start
Ask the assistant to fetch the NCBI Datasets genome report for taxon 9606 and summarize the first 10 records.