list_templates
View available business templates with default channels and descriptions to select the right setup for your outreach strategy.
Instructions
List available business templates for the setup_business tool. Shows business types with their default channels and descriptions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/api-client.ts:121-123 (handler)The actual implementation of the listTemplates method that makes the API request.
async listTemplates() { return this.request('GET', '/api/templates'); } - src/tools/setup.ts:85-94 (registration)Registration of the list_templates tool and its handler in the MCP setup.
{ name: 'list_templates', description: 'List available business templates for the setup_business tool. Shows business types with their default channels and descriptions.', inputSchema: { type: 'object' as const, properties: {} }, handler: async () => { const result = await client.listTemplates(); return JSON.stringify(result, null, 2); }, },