get_full_latam_pack
Retrieve a comprehensive LATAM compliance pack with country briefs, templates, etiquette guides, and legal frameworks for AI agent fine-tuning.
Instructions
Complete LATAM pack for fine-tuning or full agent context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/main.ts:159-159 (handler)Handler for the 'get_full_latam_pack' tool. Returns a complete JSON pack containing all LATAM modules (country briefs, outreach templates, etiquette guides, follow-up cadences, stakeholder maps, and compliance checks).
case "get_full_latam_pack": { return { content: [{ type: "text", text: JSON.stringify({ pack: "LATAM Compliance MCP v1.0", author: "Elisabeth Hitz", modules: { country_briefs: COUNTRY_BRIEFS, outreach_templates: OUTREACH_TEMPLATES, etiquette_guides: ETIQUETTE_GUIDES, followup_cadences: FOLLOWUP_CADENCES, stakeholder_map: STAKEHOLDER_MAP, compliance_checks: COMPLIANCE_CHECKS } }, null, 2) }] }; } - src/main.ts:145-145 (registration)Registration of the 'get_full_latam_pack' tool in the ListToolsRequestSchema handler. It has no required input parameters and is described as a complete LATAM pack for fine-tuning or full agent context.
{ name: "get_full_latam_pack", description: "Complete LATAM pack for fine-tuning or full agent context.", inputSchema: { type: "object", properties: {}, required: [] } }