Skip to main content
Use n8n’s native MCP Client node to call any of HoopAI’s 36 MCP tools directly inside your workflows — no custom code or API wrappers needed.
Requires n8n v1.104 or later. The MCP Client node with HTTP Streamable transport was introduced in that release. Update before proceeding.

Prerequisites

Step 1: Add the MCP Client node

In your n8n workflow, search for and add the MCP Client node.
n8n MCP Client node

Add the MCP Client node from the node panel

Step 2: Configure the connection

Set the following fields in the MCP Client node:

Step 3: Pass your Location ID

You have two options for providing the Location ID: Option A — Add as a second header (recommended for single-account workflows): In the MCP Client node headers, add:
Option B — Set it in the LLM system prompt (best for multi-account workflows): If you’re using an AI Agent node before the MCP Client, add this to the system prompt:
The MCP server will extract it from context automatically.

Step 4: Select a tool and run

Once connected, the MCP Client node will fetch the list of available tools from HoopAI. Select the tool you want to call, provide the required parameters, and execute. Example — Get recent contacts:

Example workflow

A common pattern: AI Agent + MCP Client for conversational automation.
The AI Agent node receives a natural language request, decides which MCP tool to call, and passes structured parameters to the MCP Client node. System prompt template for the AI Agent:

Multi-account workflows

For workflows that handle multiple HoopAI accounts, pass the Location ID dynamically rather than hardcoding it:
  1. Accept locationId as a parameter in your webhook or form trigger
  2. Store it in a workflow variable or pass it as {{ $json.locationId }}
  3. Inject it into the AI Agent system prompt dynamically:
This lets a single workflow serve multiple accounts without duplication.

Troubleshooting

Next steps

All 36 MCP tools

Browse the full tool reference with endpoint names and required scopes

Build a multi-agent system

LangGraph patterns for advanced HoopAI automation
Last modified on March 7, 2026