VOOZH about

URL: https://apify.com/nourishing_courier/web-data-for-ai

⇱ n8n-mcp Β· Apify


Pricing

Pay per usage

Go to Apify Store

Pricing

Pay per usage

Rating

0.0

(0)

Developer

πŸ‘ Ani BjΓΆrkstrΓΆm

Ani BjΓΆrkstrΓΆm

Maintained by Community

Actor stats

1

Bookmarked

4

Total users

1

Monthly active users

4 months ago

Last modified

Share

n8n + AI MCP Bridge: Connect Claude, GPT & LLMs to 2000+ Web Scrapers

The ultimate Model Context Protocol (MCP) bridge that connects n8n workflow automation, AI assistants (Claude, GPT, LLMs), and 2000+ Apify web scrapers into a single powerful integration.

Execute any Apify Actor directly from AI conversations or n8n workflows via standardized MCP protocol.

Why This Actor?

ProblemSolution
AI can't access real-time web dataMCP Bridge connects AI to live web scrapers
n8n workflows can't use AI toolsMCP protocol enables AI-workflow integration
Complex API integrationsSimple HTTP calls with auto data transformation
Managing multiple scrapersSingle endpoint to 2000+ Apify Actors

Key Features

  • MCP Protocol: Full Model Context Protocol implementation for AI tool calling
  • n8n Compatible: Works with n8n HTTP Request nodes out of the box
  • AI Ready: Integrates with Claude Desktop, OpenAI, LangChain, AutoGPT
  • 2000+ Tools: Access the entire Apify scraper and automation ecosystem
  • Session Management: Support for 100+ concurrent MCP sessions
  • Data Transform: Automatic conversion between n8n and MCP formats
  • Enterprise Ready: Retry mechanisms, error handling, timeout management

Use Cases

1. AI-Powered Lead Generation

User:"Find restaurants in NYC and get their contact info"
AI β†’ MCP Bridge β†’ Google Maps Scraper β†’ Contact data returned to AI

2. Automated Research Pipelines

n8n Trigger β†’ MCP Bridge β†’ Web Scraper β†’ AI Analysis β†’ Report

3. Real-Time Data for LLMs

User Question β†’ AI Model β†’ MCP Bridge β†’ Fresh Web Data β†’ AI Response

4. No-Code AI Automation

n8n Workflow β†’ MCP Tools β†’ Execute Any Apify Actor β†’ Process Results

Quick Start

Step 1: Start the Actor

Run this Actor to get your MCP endpoint URL. The Actor runs in Standby Mode - always ready to receive requests.

Step 2: Connect from AI or n8n

Create an MCP Session:

curl-X POST https://[your-standby-url]/mcp/session \
-H"Content-Type: application/json"

List Available Tools:

curl-X POST https://[your-standby-url]/mcp/tools/list \
-H"Content-Type: application/json"

Execute a Scraper:

curl-X POST https://[your-standby-url]/mcp/tools/call \
-H"Content-Type: application/json"\
-d'{
"name": "execute_actor",
"arguments": {
"actorId": "apify/web-scraper",
"input": {"startUrls": [{"url": "https://example.com"}]}
}
}'

MCP Tools Available

ToolDescriptionExample Use
search_actorsSearch Apify Store for scrapersFind the right tool for any task
execute_actorRun any Apify ActorScrape websites, extract data
get_actor_infoGet Actor detailsCheck input schema before running
list_loaded_actorsShow pre-loaded ActorsSee what's ready for fast execution
add_actorPre-load an ActorSpeed up repeated executions
get_run_statusCheck run statusMonitor long-running tasks
transform_n8n_dataConvert n8n dataAuto-map workflow data to Actor input

MCP Protocol Endpoints

EndpointMethodDescription
/mcpGETServer info and capabilities
/mcp/sessionPOSTCreate new MCP session
/mcp/tools/listPOSTList all available tools
/mcp/tools/callPOSTExecute an MCP tool

n8n Integration

HTTP Request Node Configuration

{
"method":"POST",
"url":"https://[your-standby-url]/mcp/tools/call",
"headers":{
"Content-Type":"application/json",
"X-MCP-Session":"{{$json.sessionId}}"
},
"body":{
"name":"execute_actor",
"arguments":{
"actorId":"apify/google-maps-scraper",
"input":{
"searchStringsArray":["{{$json.searchQuery}}"],
"maxCrawledPlaces":100
}
}
}
}

Data Transformation

Convert n8n workflow data to Actor-compatible format:

{
"name":"transform_n8n_data",
"arguments":{
"workflowData":{
"inputData":{
"url":"https://example.com",
"searchQuery":"products"
}
},
"targetActorId":"apify/web-scraper"
}
}

The bridge automatically maps common fields:

  • url/urls β†’ startUrls
  • searchQuery/search/keyword β†’ queries
  • maxResults/limit β†’ maxItems

Claude Desktop Integration

Add to your Claude Desktop MCP config:

{
"mcpServers":{
"apify":{
"url":"https://[your-standby-url]/mcp"
}
}
}

Legacy n8n Endpoints

For backwards compatibility:

EndpointMethodDescription
/healthGETHealth check
/actorsGETList loaded Actors
/searchPOSTSearch Apify Store
/executePOSTExecute an Actor directly
/transformPOSTTransform n8n data
/runsGETList active runs
/sessionsGETView session info

Configuration Options

ParameterDefaultDescription
apifyTokenAutoAPI token (auto-detected on Apify)
defaultActors[]Pre-load Actors on startup
enableDynamicDiscoverytrueAuto-discover Actors when requested
maxConcurrentRuns5Max parallel Actor executions
defaultTimeout300Default timeout in seconds
maxSessions100Max concurrent MCP sessions
sessionTimeout3600Session timeout in seconds
webhookSecret-Secure your endpoint

Security

  • Webhook Secret: Protect endpoints with X-Webhook-Secret header
  • Session Isolation: Each client gets an isolated session
  • Token Security: Apify tokens stored as secrets, never exposed in logs

Cost Estimation

ComponentCost
Standby Mode (256MB)~$0.02/hour
Actor ExecutionVaries by Actor used
MCP SessionsFree (included)

Target Audience

  • AI Developers: Connect LLMs to real-world web data via MCP
  • Automation Engineers: Enhance n8n with AI-powered decision making
  • No-Code Builders: Access AI scrapers without writing code
  • DevOps Teams: Integrate AI capabilities into automation pipelines

Resources

License

MIT License - Free for commercial and personal use.


Keywords: MCP, Model Context Protocol, n8n, AI, Claude, GPT, LLM, web scraper, automation, workflow, Apify, API, integration, AI tools, LangChain, AutoGPT, no-code, low-code

You might also like

n8n Documentation MCP Server

agentify/n8n-mcp-server

n8n MCP Server provides AI assistants with structured access to n8n node documentation, properties, and validation tools for building and verifying workflows efficiently.

n8n Workflow Automation Templates Scraper

scraped/n8n-workflow-automation-templates-scraper

A tool that automatically scrapes and collects n8n workflow automation templates from the n8n for easy access and use.

n8n Community Creators Scraper

lexis-solutions/n8n-community-creators-pr-1275

Scrape top n8n community creators by engagement: capture profiles, reputation metrics, locations, bios, plus linked n8n creator pages with workflow counts and verification for expert discovery and lead generation.

πŸ‘ User avatar

Lexis Solutions

2

N8n Mcp Actor

direct_duty/n8n-mcp-actor

Bridge between n8n workflows and Model Context Protocol (MCP) servers.

n8n Workflow Template Scraper

muhammetakkurtt/n8n-scraper

Automate n8n.io workflow template collection with this Apify actor. Scrape by category (AI, Marketing, DevOps), sort (relevancy, popularity), & get detailed structured data. Fetch importable JSONs for direct n8n use. Ideal for developers, automation experts & businesses.

πŸ‘ User avatar

Muhammet Akkurt

347

5.0

n8n-apify-bridge

jungle_thunder/n8n-apify-bridge

Turn your n8n workflows into data powerhouses. This bridge gives n8n users instant access to 2000 battle-tested Apify tools - web scrapers, AI agents, lead generators, price monitors, and more. No coding required.

πŸ‘ User avatar

Ani BjΓΆrkstrΓΆm

8

n8n Templates Scraper - Cheap πŸš€πŸ”Žβš‘

scrapestorm/n8n-templates-scraper---cheap

🟠 Easily collect Workflow Templates from n8n Provide one or multiple n8n workflow search URLs and extract template data including πŸ†” Workflow ID🏷️ Title πŸ‘€ Creator πŸ’° Price 🌐 Source search URL πŸ“Š and more… Perfect for automation workflow research and integration ecosystem analysis πŸš€πŸ€–πŸ“Š

2

5.0

Trustpilot Reviews

datasaurus/trustpilot-reviews

Scrape reviews from Trustpilot. Works with all of the website's filters and sorting options. Fast and efficient. n8n-nodes-trustpilot-reviews. n8n node: n8n-nodes-trustpilot-reviews

12

5.0

n8n Workflows Scraper

dadhalfdev/n8n-workflows-scraper

This scraper extracts pre-built, free workflow templates directly from the n8n template library. Pick a category and sort order, and the scraper will navigate n8n's library to extract not only the metadata of each workflow but the full, raw JSON configuration. Get up to 150 workflows per run.

πŸ‘ User avatar

Marco Rodrigues

2

Related articles

How to publish your Apify Actor as an n8n node
Read more