Back to Tools
get_disclaimers
Free
Retrieves the disclaimers and terms of service that should be presented to end users. This information should be shown before initiating dispute resolution or transaction services.
Parameters
This tool takes no parameters.
Returns
| Name | Type | Description |
|---|---|---|
| disclaimers | Disclaimer[] | Array of disclaimers to display |
| terms_url | string | URL to full terms of service |
Example
typescript
const result = await mcp.callTool("get_disclaimers", {});// Always show disclaimers before dispute resolutionconsole.log(result.disclaimers[0].text);// "BotEsq provides AI-assisted dispute resolution..."