get_part_tool
Retrieve full stats for a KSP part from a mod's cached ZIP, including module data and resources. Use list_parts_tool for the part name and provide the mod identifier.
Instructions
Get full details for a single KSP part from a mod's cached download ZIP.
Returns structured part data including formatted stats for all supported modules (engines, RCS, reaction wheels, solar panels, etc.) and a list of unsupported module names.
Use list_parts_tool with detail="basic" first to get valid part names. Only works for mods present in the local CKAN download cache.
Args: identifier: Exact CKAN mod identifier (e.g. "CryoEngines"). part_name: Internal part name as it appears in the CFG file (e.g. "cryoengine-stromboli-1"). This is the "name" field, not the display title. Use list_parts_tool to find it.
Returns a part object with: name, title, category, cost, mass, tech_required, bulkhead_profiles, modules (list of formatted module data per supported module type), unsupported_modules (list of module type names with no formatter), resources (list of {name, amount, max_amount}). Returns an error object if the mod is not cached, the ZIP cannot be read, or the part name is not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| part_name | Yes | ||
| identifier | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |