get_full_emea_pack
Retrieve the complete EMEA pack with country briefs, templates, compliance requirements, stakeholder maps, and EOR handlers to equip your AI agent with full EMEA sales and employment compliance capability.
Instructions
Get the complete EMEA pack — all country briefs, all templates, all compliance requirements, stakeholder maps, and EOR handlers. Use to fine-tune your AI agent or load as system context for full EMEA capability.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/main.ts:949-959 (registration)Tool registration in ListToolsRequestSchema handler. Defines 'get_full_emea_pack' with no required parameters — returns the complete EMEA data pack.
{ name: "get_full_emea_pack", description: "Get the complete EMEA pack — all country briefs, all templates, all compliance requirements, stakeholder maps, and EOR handlers. Use to fine-tune your AI agent or load as system context for full EMEA capability.", inputSchema: { type: "object", properties: {}, required: [] } } ] }; - src/main.ts:952-957 (schema)Input schema for get_full_emea_pack — empty object with no required properties, since this tool returns the entire pack with no filtering.
inputSchema: { type: "object", properties: {}, required: [] } } - src/main.ts:1067-1090 (handler)Handler implementation in CallToolRequestSchema switch statement. Returns a JSON object containing all six data modules: country briefs, outreach templates, follow-up cadences, compliance checks, stakeholder maps, and EOR objection handlers.
case "get_full_emea_pack": { return { content: [{ type: "text", text: JSON.stringify({ pack: "EMEA Compliance MCP — Complete Pack v1.0", author: "Elisabeth Hitz", credentials: [ "5+ years EMEA enterprise sales", "Deel ($12B), Autodesk, Criteo, Red Points", "Closed deals across UK, Ireland, Spain, Germany, France, Netherlands" ], modules: { country_briefs: COUNTRY_BRIEFS, outreach_templates: OUTREACH_TEMPLATES, followup_cadences: FOLLOWUP_CADENCES, compliance_checks: COMPLIANCE_CHECKS, stakeholder_map: STAKEHOLDER_MAP, eor_objection_handlers: EOR_OBJECTION_HANDLERS } }, null, 2) }] }; }