ListTools lists tools that are currently available on the server.
(ctx context.Context, params *ListToolsParams)
| 981 | |
| 982 | // ListTools lists tools that are currently available on the server. |
| 983 | func (cs *ClientSession) ListTools(ctx context.Context, params *ListToolsParams) (*ListToolsResult, error) { |
| 984 | return handleSend[*ListToolsResult](ctx, methodListTools, newClientRequest(cs, orZero[Params](params))) |
| 985 | } |
| 986 | |
| 987 | // CallTool calls the tool with the given parameters. |
| 988 | // |