pn_params
Retrieve parameter details (types, defaults, constraints) for a specific Panel component by name or module path. Use when you need lightweight parameter info without docstrings.
Instructions
Get detailed parameter information for a single Panel component (without the docstring).
Use this tool when you only need parameter details (types, defaults, constraints) and already know the component exists. This is lighter than get which also includes the full docstring.
IMPORTANT: This tool returns parameters for exactly one component. If your criteria match multiple components, you'll get an error asking you to be more specific.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Component name to match (case-insensitive). If None, must specify other criteria. Examples: "Button", "TextInput", "Slider" | |
| module_path | No | Full module path to match. If None, uses name and package to find component. Examples: "panel.widgets.Button", "panel_material_ui.Button" | |
| package | No | Package name to filter by. If None, searches all packages. Examples: "panel" or "panel_material_ui" |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||