describe_procedure
Get the input and output parameter signatures for a stored procedure. Use this to understand how to call a procedure without reading the full PSQL body.
Instructions
Return the input and output parameter signatures for a stored procedure without reading the full PSQL body. Use this to understand how to call a procedure. Call get_procedure_source only when you need the implementation. Returns {name, input_params:[{name,type}], output_params:[{name,type}]}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database | Yes | Database key from list_databases. | |
| procedure | Yes | Procedure name from list_procedures. Automatically uppercased. |