Skip to main content
use-apify.com

MCP: guides & tutorials

MCP connects assistants to scrapers, APIs, and files in one standard. Server design plus wiring Apify actors as tools for IDE- and Claude-native workflows.

26 articlesPage 1 of 3

View all tags

The Model Context Protocol gives AI assistants a standard way to call scrapers, APIs, and files as tools. These guides cover MCP server design and wiring Apify actors as tools for IDE- and Claude-native workflows.

MCP turns a scraper into something an assistant can invoke safely and repeatably, with scoped access. Apify-backed MCP servers bring live web data into agent workflows. Below you will find architecture notes and setup tutorials.

Related topics

MCP11 min read

Top 10 MCP Servers for Marketing, Prospecting & Business Growth (2026)

· 11 min read
Yassine El Haddad
Software Developer & Automation Specialist

Model Context Protocol (MCP) servers extend Claude Desktop and Claude Code with live access to external tools: Customer Relationship Management (CRM) data, web scraping, email, spreadsheets, and more. For marketing and sales teams, the right MCP server combination turns Claude into a research assistant, CRM manager, and content producer, all from a chat interface.

This guide covers 10 high-impact MCP servers for non-engineering business functions, with installation instructions and real-world usage examples. If you do not have a Claude account yet, you can try Claude free for a week and set these up the same day.

TL;DR:

#MCP ServerBusiness functionBest for
1ApifyWeb scraping, lead dataMarket research, lead gen, competitive intel
2HubSpotCRM operationsContact management, deal tracking
3Google SheetsReporting, data managementFinancial reports, metrics dashboards
4GmailEmail operationsOutreach, follow-ups, support
5SlackTeam communicationAlerts, summaries, reporting
6Brave SearchWeb searchMarket research, trend analysis
7Google DriveDocument managementContracts, proposals, shared docs
8NotionKnowledge managementWikis, project tracking, meeting notes
9StripePayment operationsRevenue tracking, customer billing
10Google CalendarSchedulingMeeting prep, availability, follow-ups

Prerequisites:

  • Claude Desktop installed (download)
  • MCP works on Claude Free with usage limits; Claude Pro (~$20/mo) raises limits for heavier business use
  • Budget 15+ minutes per server (OAuth / Google Cloud setup often takes longer than API-key-only servers)
Claude11 min read

How Claude Desktop + MCP Replaces 5 SaaS Tools for Small Teams

· 11 min read
Yassine El Haddad
Software Developer & Automation Specialist

Claude Desktop supports Model Context Protocol (MCP) servers and connectors for both free and paid users. For small teams, this means Claude Desktop is no longer just a chat window. With the right MCP servers it becomes a central operations hub that can read and act on Slack, Google Drive, Notion, CRM tools, and live web data without writing code.

This guide shows how Claude Desktop plus the right MCP servers can substitute for key workflows in five common paid SaaS tools (or significantly reduce your reliance on them), with setup instructions for non-technical teams and honest assessments of where this approach falls short. To be clear up front: MCP lets Claude Desktop work with these tools on your behalf. It does not literally delete every SaaS subscription, and we flag the cases where you still need the original tool.

TL;DR:

SaaS tool it replacesMCP server comboMonthly savings
Market research tool ($99–$199/mo)Apify MCP + Brave Search MCP$79–$179
Reporting tool ($50–$150/mo)Google Sheets MCP + Claude analysis$30–$130
Knowledge management ($10–$25/user/mo)Notion MCP + structured retrieval$0–$15/user
Competitive monitoring ($99–$299/mo)Apify MCP + scheduled runs$50–$250
Email drafting assistant ($20–$50/mo)Gmail MCP + Claude composing$0–$30

Prerequisites:

  • Claude Desktop installed (download)
  • Claude Free, Pro ($20/mo), or Team ($25/user/mo) subscription. MCP works on Free, but heavy daily use hits the message limits fast, so Pro or higher is realistic for business use. New to Claude? You can try Claude free for a week.
  • 15 minutes per MCP server setup
  • No app development required. You will edit a JSON (JavaScript Object Notation) config file and run npx commands in your terminal.
MCP16 min read

The Complete MCP Server Handbook for Developers (April 2026 Edition)

· 16 min read
Yassine El Haddad
Software Developer & Automation Specialist

The Model Context Protocol (MCP) is the USB-C for AI: a single open standard that connects AI applications to tools, data sources, and workflows. Originated by Anthropic in late 2024 and now an open, community-maintained standard, MCP is supported across a wide range of clients (Claude Desktop and Claude Code, ChatGPT, VS Code, Cursor, and others). The specification covers two transports (local stdio and remote Streamable HTTP, which supersedes the older HTTP+SSE transport), server-side tools, resources, and prompts, and an OAuth 2.1-based authorization flow for remote servers. The public server ecosystem is large and growing fast, spanning official Anthropic servers, vendor servers, and community projects.

If you do not already use Claude, you can try Claude free for a week and follow along with every example in this handbook. The guide covers MCP server development end-to-end, from your first server to production deployment with authentication.

TL;DR:

What you'll learnSection
MCP architecture and how it differs from REST/GraphQL§1–2
Build your first server in TypeScript§3
Build your first server in Python§4
Connect to Claude Desktop and Claude Code§5–6
OAuth 2.1 security and production auth§7
Top 20 production MCP servers§8
MCP for web scraping§9
Enterprise deployment patterns§10

Prerequisites:

  • Node.js 18+ or Python 3.10+
  • Claude Desktop or Claude Code installed
  • Basic understanding of APIs and JSON
AI agents7 min read

MCP Standard and Ecosystem in 2026: Integration Layer for AI Tools

· 7 min read
Yassine El Haddad
Software Developer & Automation Specialist

Model Context Protocol (MCP) is an open standard for how an AI host (IDE, desktop assistant, or similar) discovers and calls tools in a separate MCP server over transports such as stdio (local) or HTTP (remote). It is a JSON-RPC bridge that standardizes the boundary where models meet APIs, files, and automation. It does not replace your databases or scrapers. The payoff is one reusable integration surface across MCP-capable hosts, provided you still own auth, timeouts, and least privilege.

Below we split what the spec actually defines from what each vendor ships, sketch how the ecosystem shows up in scraping and data workflows, and outline adoption so a chat session does not become root access. For headline news context, see Top 10 AI and tech stories this week (March 17–24, 2026).

AI agents8 min read

LangGraph vs AutoGen vs CrewAI 2026: Which One Ships

· 8 min read
Yassine El Haddad
Software Developer & Automation Specialist

Production “agents” are mostly orchestration: LLM calls, tools, memory/state, retries, and guardrails. Three ecosystems lead in 2026—LangGraph, AutoGen, and CrewAI—each with different ergonomics for web data workloads.

Quick Answer

Pick LangGraph 1.0 for production agents that need stateful graphs, retries, and resumable checkpoints — it now powers agents at Uber, LinkedIn, and Klarna. Pick AutoGen 0.4 AgentChat when multi-agent debate is the product. Pick CrewAI for role-based workflows (researcher → editor → analyst) that map to org charts. For web data inside any of them, expose Apify Actors via REST, langchain-apify, or the Apify MCP server.

AI agents6 min read

Best MCP Servers for Developers in 2026: Web Data, Code, Files, and More

· 6 min read
Yassine El Haddad
Software Developer & Automation Specialist

The Model Context Protocol (MCP) is an open standard (originated by Anthropic, now community-governed) for connecting AI assistants like Claude (Desktop and Code), ChatGPT, VS Code, and Cursor to external tools. The ecosystem has grown quickly, with thousands of community-built servers now available. This guide covers the ones that are most useful for developers, with setup instructions and honest notes on when each fits.

AI agents6 min read

Claude Sonnet 4.6 for Web Scraping and AI Agents: Extended Thinking + Tool Use (2026)

· 6 min read
Yassine El Haddad
Software Developer & Automation Specialist

Extended thinking first shipped in Claude 3.7 Sonnet (February 24, 2025), the first hybrid reasoning model from Anthropic. It is now standard across the Claude 4 family, and the model you should actually reach for today is Claude Sonnet 4.6 for balanced agent work or Claude Opus 4.7 when a task needs the strongest reasoning. Extended thinking lets the model reason through multi-step decisions before it acts, which is what makes Claude reliable for autonomous web research.

This guide covers the three main patterns for using Claude in web scraping and data collection workflows. The code works the same whether you point it at Sonnet 4.6 or Opus 4.7. Just swap the model ID.

Claude8 min read

Deploying a Remote Claude MCP Server on Liquid Web VPS (2026)

· 8 min read
Yassine El Haddad
Software Developer & Automation Specialist

Teams often want a shared MCP (Model Context Protocol) server: one deployment the whole team uses instead of each developer running a local server with their own API keys. MCP supports two transports. stdio runs the server as a local process, and remote MCP is reached over HTTP (the current spec uses Streamable HTTP, with older servers still on SSE). A self-hosted server on a VPS exposes its tools over HTTP and shows up in Claude as a remote MCP connector. This guide walks through provisioning a Liquid Web VPS, deploying your MCP server with PM2 or systemd, exposing it via Traefik over HTTPS, and connecting Claude to the remote endpoint with token-based auth. New to Claude? You can try Claude free for a week before committing to a paid plan.

AI agents8 min read

Give Claude Real-Time Web Access Using Apify Actors (2026)

· 8 min read
Yassine El Haddad
Software Developer & Automation Specialist

Claude has built-in web search, which handles quick lookups well. What it does not do is targeted, structured scraping: pulling every product and price off a page, crawling a competitor's whole site, or returning a clean dataset you can process. That is where Apify comes in. The Apify MCP server turns 30,000+ Actors into Claude's tools, so you can ask Claude to run a scraper and it fetches the dataset straight into the chat. New to Claude? You can try Claude free for a week first. To wire up the data side, set up Apify MCP for Claude.

Guides on this site

Frequently asked questions

Frequently Asked Questions

MCP (Model Context Protocol) is an open standard that lets AI assistants like Claude call external tools — databases, APIs, and web scrapers — directly from a chat session. Instead of switching between tools manually, the AI plans which scraper to run, triggers it, and processes the results in one conversation. The Apify MCP server exposes web scraping as a native tool any MCP-compatible AI can call.

Ask Claude or another MCP-enabled AI to scrape Google Maps for local businesses in a city, pull LinkedIn profiles matching a job title, extract competitor pricing from a website, or build a dataset of news articles on a topic — all from a natural-language prompt. The AI handles the task orchestration; Apify handles the scraping. You get structured data back without touching a scraper UI.

Install the Apify MCP server via npm, add your Apify API token to the MCP config file, and specify which actor IDs to expose as tools. In Claude Desktop, add the server under mcp_servers in the settings JSON. You can then type "scrape Google Maps for coffee shops in Austin" and the AI calls the actor, waits for results, and returns structured data. Full setup takes under 30 minutes.

You need to edit a JSON config file and run a terminal install command — basic technical comfort helps. After setup, the experience is fully conversational: describe what you want in plain English and the AI handles the rest. If you want the MCP server set up, secured, and configured for your environment, this site offers deployment services that cover it.