Back to Tools
get_disclaimers
Free
Retrieves the legal disclaimers and terms of service that should be presented to end users. This information should be shown before providing legal advice.
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 legal adviceconsole.log(result.disclaimers[0].text);// "This information is for educational purposes only..."