The Apify Model Context Protocol (MCP) Server at mcp.apify.com instantly connects AI applications and agents to thousands of readyโbuilt tools. It allows your AI assistant to use any Apify Actor for web scraping, data extraction, and automation tasks in real time.
๐ Try the hosted Apify MCP Server!
For the easiest setup and most powerful features, including the ability to find and use any Actor from Apify Store, connect your AI assistant to our hosted server:
It supports OAuth, so you can connect from clients like Claude.ai or Visual Studio Code with just the URL.
- ๐ Introducing the Apify MCP server
- ๐ Quickstart
- ๐ค MCP clients and examples
- ๐ช Try Apify MCP instantly
- ๐ ๏ธ Tools, resources, and prompts
- ๐ Troubleshooting (local MCP server)
- โ๏ธ Development
- ๐ค Contributing
- ๐ Learn more
The Apify MCP Server allows an AI assistant to use any Apify Actor as a tool to perform a specific task. For example, it can:
- Use Facebook Posts Scraper to extract data from Facebook posts from multiple pages/profiles.
- Use Google Maps Email Extractor to extract contact details from Google Maps.
- Use Google Search Results Scraper to scrape Google Search Engine Results Pages (SERPs).
- Use Instagram Scraper to scrape Instagram posts, profiles, places, photos, and comments.
- Use RAG Web Browser to search the web, scrape the top N URLs, and return their content.
Video tutorial: Integrate 5,000+ Apify Actors and Agents with Claude
You can use the Apify MCP Server in two ways:
HTTPS Endpoint (mcp.apify.com): Connect from your MCP client via OAuth or by including the Authorization: Bearer <APIFY_TOKEN>
header in your requests. This is the recommended method for most use cases. Because it supports OAuth, you can connect from clients like Claude.ai or Visual Studio Code using just the URL: https://mcp.apify.com
.
https://mcp.apify.com
(recommended) for streamable transporthttps://mcp.apify.com/sse
for legacy SSE transport
Standard Input/Output (stdio): Ideal for local integrations and command-line tools like the Claude for Desktop client.
- Set the MCP client server command to
npx @apify/actors-mcp-server
and theAPIFY_TOKEN
environment variable to your Apify API token. - See
npx @apify/actors-mcp-server --help
for more options.
You can find detailed instructions for setting up the MCP server in the Apify documentation.
To interact with the Apify MCP server, you can use various MCP clients, such as:
- Claude Desktop
- Visual Studio Code
- LibreChat
- Apify Tester MCP Client
- Other clients at https://modelcontextprotocol.io/clients
- More clients at https://glama.ai/mcp/clients
With MCP server integrated, you can ask your AI assistant things like:
- "Search the web and summarize recent trends in AI Agents."
- "Find the top 10 Italian restaurants in San Francisco."
- "Find and analyze the Instagram profile of The Rock."
- "Provide a step-by-step guide on using the Model Context Protocol, including source URLs."
- "What Apify Actors can I use?"
The following table outlines the tested MCP clients and their level of support for key features.
Client | Dynamic Tool Discovery | Notes |
---|---|---|
Claude.ai (web) | โ Full | |
Claude Desktop | ๐ก Partial | Tools may need to be reloaded manually in the client. |
VS Code (Genie) | โ Full | |
LibreChat | โ Untested | |
Apify Tester MCP Client | โ Full | Designed for testing Apify MCP servers. |
This matrix is a work in progress. If you have tested other clients, please consider contributing to this documentation.
Want to try Apify MCP without any setup?
Check out Apify Tester MCP Client
This interactive, chat-like interface provides an easy way to explore the capabilities of Apify MCP without any local setup. Just sign in with your Apify account and start experimenting with web scraping, data extraction, and automation tools!
The MCP server provides a set of tools for interacting with Apify Actors. Since the Apify Store is large and growing rapidly, the MCP server provides a way to dynamically discover and use new Actors.
Any Apify Actor can be used as a tool.
By default, the server is pre-configured with one Actor, apify/rag-web-browser
, and several helper tools.
The MCP server loads an Actor's input schema and creates a corresponding MCP tool.
This allows the AI agent to know exactly what arguments to pass to the Actor and what to expect in return.
For example, for the apify/rag-web-browser
Actor, the input parameters are:
{
"query": "restaurants in San Francisco",
"maxResults": 3
}
You don't need to manually specify which Actor to call or its input parameters; the LLM handles this automatically. When a tool is called, the arguments are automatically passed to the Actor by the LLM. You can refer to the specific Actor's documentation for a list of available arguments.
One of the most powerful features of using MCP with Apify is dynamic tool discovery. It gives an AI agent the ability to find new tools (Actors) as needed and incorporate them. Here are some special MCP operations and how the Apify MCP Server supports them:
- Actor discovery and management: Search for Actors, view their details, and dynamically add or remove them as available tools for the AI.
- Apify documentation: Search the Apify documentation and fetch specific documents to provide context to the AI.
- Actor runs (*): Get lists of your Actor runs, inspect their details, and retrieve logs.
- Apify storage (*): Access data from your datasets and key-value stores.
Note: Helper tool categories marked with (*) are not enabled by default in the MCP server and must be explicitly enabled using the tools
argument (either the --tools
command line argument for the stdio server or the ?tools
URL query parameter for the remote MCP server). The tools
argument is a comma-separated list of categories with the following possible values:
docs
: Search and fetch Apify documentation tools.runs
: Get Actor run lists, run details, and logs from a specific Actor run.storage
: Access datasets, key-value stores, and their records.preview
: Experimental tools in preview mode.
For example, to enable all tools, use npx @apify/actors-mcp-server --tools docs,runs,storage,preview
or https://mcp.apify.com/?tools=docs,runs,storage,preview
.
The server does not yet provide any resources or prompts.
To debug the server, use the MCP Inspector tool:
export APIFY_TOKEN="your-apify-token"
npx @modelcontextprotocol/inspector npx -y @apify/actors-mcp-server
- Node.js (v18 or higher)
Create an environment file, .env
, with the following content:
APIFY_TOKEN="your-apify-token"
Build the actor-mcp-server
package:
npm run build
Since MCP servers operate over standard input/output (stdio), debugging can be challenging. For the best debugging experience, use the MCP Inspector.
You can launch the MCP Inspector via npm
with this command:
export APIFY_TOKEN="your-apify-token"
npx @modelcontextprotocol/inspector node ./dist/stdio.js
Upon launching, the Inspector will display a URL that you can open in your browser to begin debugging.
- Make sure you have
node
installed by runningnode -v
. - Make sure the
APIFY_TOKEN
environment variable is set. - Always use the latest version of the MCP server by using
@apify/actors-mcp-server@latest
.
The Actor input schema is processed to be compatible with most MCP clients while adhering to JSON Schema standards. The processing includes:
- Descriptions are truncated to 500 characters (as defined in
MAX_DESCRIPTION_LENGTH
). - Enum fields are truncated to a maximum combined length of 200 characters for all elements (as defined in
ACTOR_ENUM_MAX_LENGTH
). - Required fields are explicitly marked with a
REQUIRED
prefix in their descriptions for compatibility with frameworks that may not handle the JSON schema properly. - Nested properties are built for special cases like proxy configuration and request list sources to ensure the correct input structure.
- Array item types are inferred when not explicitly defined in the schema, using a priority order: explicit type in items > prefill type > default value type > editor type.
- Enum values and examples are added to property descriptions to ensure visibility, even if the client doesn't fully support the JSON schema.
- Rental Actors are only available for use with the hosted MCP server at https://mcp.apify.com. When running the server locally via stdio, you can only access Actors that are already added to your local toolset. To dynamically search for and use any Actor from the Apify Storeโincluding rental Actorsโconnect to the hosted endpoint.
We welcome contributions to improve the Apify MCP Server! Here's how you can help:
- ๐ Report issues: Find a bug or have a feature request? Open an issue.
- ๐ง Submit pull requests: Fork the repo and submit pull requests with enhancements or fixes.
- ๐ Documentation: Improvements to docs and examples are always welcome.
- ๐ก Share use cases: Contribute examples to help other users.
For major changes, please open an issue first to discuss your proposal and ensure it aligns with the project's goals.