{
  "schema_version": "1",
  "tools": [
    {
      "name": "navigate_to_page",
      "description": "Navigate to a named section of the Meridian Studio site.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "page": { "type": "string", "enum": ["work","services","about","contact"], "description": "The page to navigate to." }
        },
        "required": ["page"]
      }
    },
    {
      "name": "go_home",
      "description": "Return to the Meridian Studio landing page and interactive 3D globe.",
      "inputSchema": { "type": "object", "properties": {} }
    },
    {
      "name": "get_services",
      "description": "Return structured data about all four Meridian Studio service disciplines: Brand Development, Visual Media, Web & Software, and Marketing.",
      "inputSchema": { "type": "object", "properties": {} }
    },
    {
      "name": "get_contact_info",
      "description": "Return Meridian Studio contact details and current project availability.",
      "inputSchema": { "type": "object", "properties": {} }
    },
    {
      "name": "prefill_contact_form",
      "description": "Prefill the Meridian Studio contact enquiry form and open the contact page.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name":     { "type": "string" },
          "email":    { "type": "string", "format": "email" },
          "company":  { "type": "string" },
          "message":  { "type": "string" },
          "services": { "type": "array", "items": { "type": "string", "enum": ["brand","visual","web","marketing"] } }
        },
        "required": ["name","email"]
      }
    }
  ]
}
