N

node8.ai

AI consulting and implementation firm that builds practical automation systems and AI agents for enterprise revenue, operations, and industry-specific workflows.

1read
3action
https://www.node8.ai/

live · AI Agents & Fintech · JSON · API for agents

Tools 4 tools

get_company_inforead

Returns structured information about Node8 — what the company does, its three-step service model, ideal customer profile, and technology partners. Use this first to understand if Node8 is a fit.

View tool JSON
{
  "name": "get_company_info",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns structured information about Node8 — what the company does, its three-step service model, ideal customer profile, and technology partners. Use this first to understand if Node8 is a fit.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
navigate_to_solutionaction

Navigates to the most relevant Node8 AI solution page for the visitor's industry or use case. Use this when a visitor wants to find which Node8 solution fits their needs.

View tool JSON
{
  "name": "navigate_to_solution",
  "kind": "action",
  "impl": "imperative",
  "description": "Navigates to the most relevant Node8 AI solution page for the visitor's industry or use case. Use this when a visitor wants to find which Node8 solution fits their needs.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "industry": {
        "type": "string",
        "enum": [
          "Revenue & GTM",
          "Healthcare",
          "Accounting",
          "AEC",
          "Financial Services"
        ],
        "description": "The visitor's industry or primary business focus."
      }
    },
    "required": [
      "industry"
    ]
  },
  "page": "/"
}
book_discovery_callaction

Opens the Node8 booking calendar so the visitor can schedule a free 20-minute discovery call with the team. Use this when the visitor is ready to speak with someone directly.

View tool JSON
{
  "name": "book_discovery_call",
  "kind": "action",
  "impl": "imperative",
  "description": "Opens the Node8 booking calendar so the visitor can schedule a free 20-minute discovery call with the team. Use this when the visitor is ready to speak with someone directly.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
submit_inquiryaction

Submits a written contact inquiry to the Node8 team. Use this when someone wants to describe their problem and request a proposal or callback — without scheduling a call right now.

View tool JSON
{
  "name": "submit_inquiry",
  "kind": "action",
  "impl": "imperative",
  "description": "Submits a written contact inquiry to the Node8 team. Use this when someone wants to describe their problem and request a proposal or callback — without scheduling a call right now.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Full name of the person reaching out"
      },
      "email": {
        "type": "string",
        "format": "email",
        "description": "Work email address"
      },
      "role": {
        "type": "string",
        "enum": [
          "CEO",
          "CTO",
          "COO",
          "VP of Sales",
          "VP of Engineering",
          "Head of Operations",
          "Product Manager",
          "Founder",
          "Other"
        ],
        "description": "Job title or role"
      },
      "company": {
        "type": "string",
        "description": "Company name (optional)"
      },
      "message": {
        "type": "string",
        "description": "What the team does manually today and what they want to automate or improve.",
        "minLength": 20
      }
    },
    "required": [
      "name",
      "email",
      "role",
      "message"
    ]
  },
  "page": "/"
}