get_full_apac_pack
Retrieve a full APAC compliance pack to fine-tune AI agents or provide complete context, with country briefs, outreach templates, etiquette guides, follow-up cadences, and stakeholder maps.
Instructions
Complete APAC pack for fine-tuning or full agent context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/main.ts:179-179 (registration)Tool 'get_full_apac_pack' is registered in the ListToolsRequestSchema handler with an empty input schema (no required arguments).
{ name: "get_full_apac_pack", description: "Complete APAC pack for fine-tuning or full agent context.", inputSchema: { type: "object", properties: {}, required: [] } } - src/main.ts:193-193 (handler)Handler logic for 'get_full_apac_pack': returns all data modules (COUNTRY_BRIEFS, OUTREACH_TEMPLATES, ETIQUETTE_GUIDES, FOLLOWUP_CADENCES, STAKEHOLDER_MAP, COMPLIANCE_CHECKS) as a single JSON object.
case "get_full_apac_pack": { return { content: [{ type: "text", text: JSON.stringify({ pack: "APAC Compliance MCP Complete 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) }] }; }