{
  "version": "1.0",
  "name": "Codimite",
  "description": "Enterprise web solutions — n8n services, workflow automation, AI integrations, Chrome Enterprise migration, industrial solutions, and software engineering.",
  "tools": [
    {
      "name": "navigate_service",
      "description": "Navigate to a specific Codimite service page. Available services include n8n workflow automation, n8n migration, n8n community vs enterprise comparison, self-hosted n8n, Google ADK n8n integration, workflow automation, Chrome Enterprise Premium migration, industrial solutions, and Zoom professional services.",
      "parameters": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "description": "The service page to navigate to.",
            "enum": [
              "n8n-overview",
              "n8n-migration",
              "n8n-community-vs-enterprise",
              "n8n-self-hosted",
              "google-adk-n8n-node",
              "workflow-automation",
              "services-overview",
              "chrome-enterprise-premium",
              "industrial-solutions",
              "zoom-services"
            ]
          }
        },
        "required": ["service"]
      },
      "actions": {
        "n8n-overview": { "navigate": "/n8n/" },
        "n8n-migration": { "navigate": "/n8n/n8n-migration/" },
        "n8n-community-vs-enterprise": { "navigate": "/n8n/n8n-community-vs-enterprise/" },
        "n8n-self-hosted": { "navigate": "/n8n-self-hosted-service/" },
        "google-adk-n8n-node": { "navigate": "/google-adk-n8n-node/" },
        "workflow-automation": {
          "navigate": "/automations/workflow-automation-services-codimite/"
        },
        "services-overview": { "navigate": "/services/" },
        "chrome-enterprise-premium": {
          "navigate": "/enterprise-google-migration-services/chrome-enterprise-premium-migration/"
        },
        "industrial-solutions": { "navigate": "/industrial-solutions/" },
        "zoom-services": { "navigate": "/zoom-services/" }
      }
    },
    {
      "name": "get_service_info",
      "description": "Get structured information about a specific Codimite service including its name, description, and URL.",
      "parameters": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "description": "The service to get information about.",
            "enum": [
              "n8n-overview",
              "n8n-migration",
              "n8n-community-vs-enterprise",
              "n8n-self-hosted",
              "google-adk-n8n-node",
              "workflow-automation",
              "services-overview",
              "chrome-enterprise-premium",
              "industrial-solutions",
              "zoom-services"
            ]
          }
        },
        "required": ["service"]
      },
      "returns": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "description": { "type": "string" },
          "url": { "type": "string" }
        }
      },
      "data": {
        "n8n-overview": {
          "name": "n8n Services",
          "description": "Expert n8n consulting, deployment, and managed services. We help enterprises deploy, scale, and optimise self-hosted n8n for workflow automation.",
          "url": "/n8n/"
        },
        "n8n-migration": {
          "name": "n8n Migration Services",
          "description": "Zero-downtime migration to self-hosted n8n. We handle discovery, mapping, validation, cutover, and hypercare so your automations never skip a beat.",
          "url": "/n8n/n8n-migration/"
        },
        "n8n-community-vs-enterprise": {
          "name": "n8n Community vs Enterprise",
          "description": "Compare n8n Community and Enterprise editions. Understand pricing, security, SSO, governance, and deployment differences to pick the right self-hosted n8n.",
          "url": "/n8n/n8n-community-vs-enterprise/"
        },
        "n8n-self-hosted": {
          "name": "n8n Self-Hosted Service",
          "description": "Production-grade self-hosted n8n deployment with hardening, monitoring, CI/CD, and ongoing managed operations.",
          "url": "/n8n-self-hosted-service/"
        },
        "google-adk-n8n-node": {
          "name": "Google ADK n8n Node",
          "description": "Integrate Google's Agent Development Kit with n8n for AI-powered workflow automation. Bridge the gap between AI agents and operational workflows.",
          "url": "/google-adk-n8n-node/"
        },
        "workflow-automation": {
          "name": "Workflow Automation Services",
          "description": "End-to-end agentic workflow automation services. Design, build, and scale intelligent automations across your organisation.",
          "url": "/automations/workflow-automation-services-codimite/"
        },
        "services-overview": {
          "name": "All Services",
          "description": "Codimite's full range of services including AI automation, n8n migration, Zoom solutions, Chrome Enterprise, cloud modernization, and offshore engineering.",
          "url": "/services/"
        },
        "chrome-enterprise-premium": {
          "name": "Chrome Enterprise Premium Migration",
          "description": "Plan, deploy, and operationalize Chrome Enterprise Premium with DLP, advanced threat protection, zero-trust access, and context-aware security controls integrated directly into the Chrome browser.",
          "url": "/enterprise-google-migration-services/chrome-enterprise-premium-migration/"
        },
        "industrial-solutions": {
          "name": "Industrial Solutions",
          "description": "Specialized technology solutions for healthcare, finance, education, e-commerce, SaaS, manufacturing, logistics, airlines, and sales and marketing sectors.",
          "url": "/industrial-solutions/"
        },
        "zoom-services": {
          "name": "Enterprise Zoom Professional Services & Solutions",
          "description": "End-to-end Zoom enterprise services including Zoom migrations, integrations, custom Zoom applications, Zoom Contact Center enhancements, and AI-powered Zoom workflow automation.",
          "url": "/zoom-services/"
        }
      }
    },
    {
      "name": "search_content",
      "description": "Search Codimite blog posts and case studies by keyword. Returns matching articles with title, description, date, and URL.",
      "parameters": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search query to match against blog post titles, descriptions, and tags."
          }
        },
        "required": ["query"]
      },
      "returns": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "title": { "type": "string" },
            "description": { "type": "string" },
            "url": { "type": "string" },
            "date": { "type": "string" },
            "type": { "type": "string" }
          }
        }
      },
      "implementation": "imperative",
      "endpoint": "/api/content-index.json"
    },
    {
      "name": "navigate_page",
      "description": "Navigate to a general page on the Codimite website.",
      "parameters": {
        "type": "object",
        "properties": {
          "page": {
            "type": "string",
            "description": "The page to navigate to.",
            "enum": ["home", "about", "blog", "services"]
          }
        },
        "required": ["page"]
      },
      "actions": {
        "home": { "navigate": "/" },
        "about": { "navigate": "/about/" },
        "blog": { "navigate": "/blog/" },
        "services": { "navigate": "/services/" }
      }
    },
    {
      "name": "contact_inquiry",
      "description": "Submit a contact inquiry to Codimite. Sends a message with your name, email, and message. Optionally specify a form type, company name, and phone number.",
      "parameters": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name of the person submitting the inquiry."
          },
          "email": {
            "type": "string",
            "description": "Email address for follow-up communication."
          },
          "message": {
            "type": "string",
            "description": "The inquiry message or question."
          },
          "form_type": {
            "type": "string",
            "description": "Type of inquiry form.",
            "enum": ["general", "get-started", "partner", "migration"]
          },
          "company": {
            "type": "string",
            "description": "Company or organisation name (optional)."
          },
          "phone": {
            "type": "string",
            "description": "Phone number for contact (optional)."
          }
        },
        "required": ["name", "email", "message"]
      },
      "returns": {
        "type": "object",
        "properties": {
          "ok": { "type": "boolean" },
          "error": { "type": "string" }
        }
      },
      "implementation": "imperative",
      "endpoint": "/api/contact"
    }
  ]
}
