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
| Name | Type | Required | Description |
|---|---|---|---|
| session_token | string | Optional | Optional session token for personalized pricing |
Returns
| Name | Type | Description |
|---|---|---|
| services | Service[] | 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: {...} },// ...// ]// }