In certain cases, you need to use tool or authorization parameters that should not be hardcoded in the HTTP request.AgentPass uses Handlebars templating for dynamic variable replacement. Variables are replaced with the actual parameter values when the request is made. In order to use variables, you need to use the following patterns:Query and Path Parameters
{{toolParams.parameterName}}
Body Parameters
{{toolParams.parameterName.propertyName}}
Header Parameters
{{headers.authorization}} : Full Authorization header (e.g., “Bearer token123”)
{{headers.originalToken}} : JWT token without “Bearer” prefix