model_get
ManagementcatalogGet Model
Not in the default tool list
This tool lives in the tool catalog. Discover it with scenario_tools_search (or enumerate everything with scenario_tools_list) and run it via scenario_tool_execute_read. To list every tool directly, connect with ?toolsets=full.
Get full details for one model (deprecated capabilities filtered). The long markdown description is NOT in the base record (it only carries the one-line shortDescription) — set include_description=true on the FIRST call whenever the user asks for a model's description, full description, documentation, or usage notes.
Args:
- model_id: required
- include_description: set true when the user wants the model's description/documentation — fetches the long markdown description alongside the record
- team_id, project_id: required for OAuth callers
Returns: the full model record with deprecated capabilities (controlnet*, *ip_adapter*) filtered. With include_description, the record additionally carries `description` (markdown) when one exists.
Examples:
- "Get this model" -> model_id="model_xxx"
- "Give me the full description of this model" -> model_id="model_xxx", include_description=true
read-onlyidempotentopen-world
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| model_id | string | ✓ | Model ID. |
| include_description | boolean | — | Set true whenever the user asks for the model's description, full description, documentation, or usage notes — the base record only carries the one-line shortDescription; the long markdown description requires this flag. Off by default. |
| team_id | string | — | Team ID. Required if user belongs to multiple teams. |
| project_id | string | — | Project ID to scope the operation to. |
| response_format | enum(json | markdown) | json | Output format: 'json' for structured data, 'markdown' for human-readable text. |