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.

28 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

Claude4 min read

Claude Cowork Scheduled Tasks: Web-Data Digests on Autopilot (2026)

· 4 min read
Yassine El Haddad
Software Developer & Automation Specialist
Quick Answer

Claude Cowork can run a task on a schedule (hourly, daily, weekly, or weekdays) and it runs even when your computer is asleep. Pair that with an Apify scraper and you get a recurring web-data digest, a morning price check or a weekly review report, delivered without you doing anything.

Most scraping guides stop at the one-off run. The real leverage is recurring data: the prices, reviews, and listings that change while you are not watching. Cowork's scheduled tasks turn a single scrape into a standing job.

Claude6 min read

Build a Claude Skill for Web Scraping (Calls Apify Actors) (2026)

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

A Claude Skill is a SKILL.md folder that packages instructions Claude loads automatically when relevant. Build one that tells Claude to run Apify Actors for scraping, and every future "get me this web data" request just works. Or install the official Apify Claude Code plugin, which ships five ready-made skills.

Agent Skills are modular capabilities that extend Claude: each Skill packages instructions, metadata, and optional resources that Claude uses automatically when they are relevant to your request. Instead of re-explaining how you like to scrape every time, you encode it once, and Claude reaches for it on its own.

This guide builds a scraping skill that calls Apify, and points you at the official plugin if you would rather not start from scratch.

Claude6 min read

Scrape Websites into a Spreadsheet with Claude Cowork + Apify (2026)

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

Connect Apify's remote MCP server (https://mcp.apify.com) to Claude Cowork as a custom connector, then ask Cowork in plain language to scrape a site. Cowork picks the right Apify Actor, runs it, and hands you the data to export as a spreadsheet, no code.

Claude Cowork is Anthropic's "hand Claude real work" surface: it runs on the same agentic engine as Claude Code but with no terminal, so it can take on multi-step tasks and finish them for you. Cowork can already search the web and, with computer use, drive a browser a page at a time. What it has no answer for is bulk structured extraction: paginating a result grid, holding a schema across thousands of rows, rotating proxies, and surviving anti-bot defences. That is exactly what Apify adds: a store of pre-built scrapers Cowork can call as tools.

This guide connects the two and turns "get me this web data" into a spreadsheet, with no code.

Create a free Apify account (free monthly credits) →

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.

Apify10 min read

How to Connect Apify to Claude Desktop via MCP Server (2026)

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

Connect Apify to Claude Desktop via the official MCP server. Claude can run Actors from chat, browse the Apify Store, and read datasets, no code required. You ask; Claude scrapes. If you do not have the app yet, you can try Claude free for a week, then get an Apify account and follow the steps below.

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.

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.