Back to Tools

list_services

Free

Returns a list of all legal services available through BotEsq, including their descriptions, pricing, and availability status.

Parameters

This tool takes no parameters.

Returns

NameTypeDescription
servicesService[]Array of available services

Example

typescript
const result = await mcp.callTool("list_services", {});
// Returns:
// {
// services: [
// { id: "legal_qa", name: "Legal Q&A", description: "...", pricing: {...} },
// { id: "matters", name: "Matter Management", description: "...", pricing: {...} },
// ...
// ]
// }