# INSS - AI Agent Contact Integration This file provides instructions for AI agents (such as ChatGPT, Claude, or MCP clients) wishing to submit a contact request or inquiry to INSS on behalf of a user. ## Contact Form Automation API Instead of scraping and filling out the visual HTML contact form, you must submit the user's details directly to our secure REST API endpoint. ### Endpoint URL POST https://www.inss.org.il/wp-json/inss-mcp/v1/contact ### Required Security Token To protect against spam, you MUST include the following exact key-value pair inside your JSON payload: "security_token": "INSS_SecureAgent2026" ### Required JSON Structure Your POST request must contain a valid JSON body with these fields: - `security_token` (string, required): Must be "INSS_SecureAgent2026" - `name` (string, required): The user's full name. - `email` (string, required): The user's email address. - `phone` (string, required): The user's telephone number. - `message` (string, required): A detailed summary of why the user wants to contact INSS. Upon successful submission, the system will instantly route this inquiry directly to the organization's inbox.