get_recommendations_tool
Find related Kerbal Space Program mods by analyzing CKAN dependency and recommendation relationships. Provide known mod identifiers to get deduplicated related mods with relationship categories and sources.
Instructions
Get mods related to a given list of mods via CKAN dependency/recommendation relationships.
For each result, shows the same fields as search_mods plus the relationship category and which input mods it was found through.
If the same mod appears via multiple input mods or multiple relationship types, it is deduplicated: the highest-priority category wins, and all source mods are listed.
Args: identifiers: List of CKAN mod identifiers to find recommendations for. Use search_mods to find identifiers first. categories: Which relationship categories to include. Defaults to ["depends", "recommends", "suggests"]. Available categories (in priority order): - "depends": mods that the input mods depend on - "supports": mods that the input mods declare support for - "recommends": mods recommended by the input mods - "suggests": mods suggested by the input mods - "depends_by": mods that depend on any of the input mods - "supported_by": mods that declare support for any of the input mods - "recommended_by": mods that recommend any of the input mods - "suggested_by": mods that suggest any of the input mods Pass ["all"] to include all categories. limit: Number of results per page (default 20, max 100). offset: Pagination offset (default 0).
Returns JSON with keys: total, offset, limit, results. Each result has: identifier, name, abstract, tags, authors, max_ksp_version, latest_version, last_updated_at, download_count, download_size, install_size, category, related_mods.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| categories | No | ||
| identifiers | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |