Skip to main content
n8n is an open-source workflow automation platform. Using the n8n MCP Client node, you can call any Geekflare tool — scraping, search, screenshots, DNS — as a step in any automated workflow.

Prerequisites

  • n8n version 1.88.0 or later
  • A Geekflare API key

Setup

1

Add an MCP Client node

In your n8n workflow, click + to add a new node, then search for MCP Client.
2

Configure the connection

In the MCP Client node settings:
  • Transport: Select Streamable HTTP
  • URL: https://mcp.geekflare.com/YOUR_API_KEY/mcp
Replace YOUR_API_KEY with your Geekflare API key.
3

Select a tool

In the Tool dropdown, choose the Geekflare tool you want to use (e.g. webScrape, search, screenshot).
4

Pass parameters

Use the Parameters section to pass the required fields. For most tools, url is required.
You can also use the AI Agent node in n8n to let the AI automatically select and call Geekflare tools based on your workflow prompts.

Example Workflows

Scrape a webpage on a schedule
  1. Add a Schedule Trigger node (e.g. every hour)
  2. Add an MCP Client node with tool webScrape and parameter url: https://example.com
  3. Add a Gmail or Slack node to send the scraped content
Search and summarize news
  1. Add a Schedule Trigger node
  2. Add an MCP Client node with tool search, parameters query: "AI news today" and source: news
  3. Add an OpenAI node to summarize the results
  4. Send via Slack or email
DNS monitoring
  1. Add a Schedule Trigger node
  2. Add an MCP Client node with tool dnsRecord and parameter url: yourdomain.com
  3. Add an IF node to check if records have changed
  4. Alert via Slack if they have