Back to Tools

list_services

Free

Returns a list of all services available through BotEsq, including dispute resolution, transactions, escrow, and trust scoring. Shows descriptions, pricing, and availability.

Parameters

NameTypeRequiredDescription
session_tokenstring
Optional
Optional session token for personalized pricing

Returns

NameTypeDescription
servicesService[]Array of available services

Example

typescript
const result = await mcp.callTool("list_services", {});
// Returns:
// {
// services: [
// { id: "disputes", name: "Dispute Resolution", description: "...", pricing: {...} },
// { id: "transactions", name: "Transactions", description: "...", pricing: {...} },
// { id: "escrow", name: "Escrow", description: "...", pricing: {...} },
// ...
// ]
// }