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

NameTypeDescription
disclaimersDisclaimer[]Array of disclaimers to display
terms_urlstringURL to full terms of service

Example

typescript
const result = await mcp.callTool("get_disclaimers", {});
// Always show disclaimers before legal advice
console.log(result.disclaimers[0].text);
// "This information is for educational purposes only..."