by apify
A curated collection of ready‑to‑run Model Context Protocol servers packaged as Apify Actors, offering pay‑per‑use pricing, global hosting, scaling, analytics, OAuth authentication, and multi‑transport support.
Provides a set of production‑ready MCP servers wrapped as Apify Actors. Each server proxies an open‑source stdio MCP implementation or a remote HTTP service, allowing developers to monetize their tools through Apify’s pay‑per‑use model while benefitting from reliable hosting, monitoring, and analytics.
npx:
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@apify/brave-search-mcp-server"]
}
}
}
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@apify/brave-search-mcp-server"]
}
}
}
Q: Do I need to host the underlying MCP server myself? A: No. The Apify Actors host the servers for you, handling scaling, monitoring, and billing.
Q: How are API keys managed? A: Secrets are stored securely in Apify Actor settings and injected as environment variables at runtime.
Q: Can I claim ownership of a server if I am the original developer?
A: Yes. Contact ai@apify.com to claim or discuss concerns.
Q: What runtimes are supported? A: Both Node.js (TypeScript) and Python servers are supported; Docker can be used for containerized deployment.
Q: Is there a free tier? A: Apify provides a free tier for testing, but production usage is billed per invocation according to the Actor’s pricing.
A curated collection of production-ready Model Context Protocol (MCP) servers published as Actors on Apify. These are wrappers around open-source stdio MCP servers or remote HTTP servers — credits go to the original developers.
| Actor | Description | Actor badge | Original author |
|---|---|---|---|
| Brave Search MCP Server | Web search capabilities powered by Brave Search | MCP Community | |
| BrowserBase MCP Server | Cloud web automation capabilities | BrowserBase | |
| Docfork MCP Server | FreshFresh docs for your AI code editor | Docfork.AI | |
| Perplexity Sonar MCP Server | AI-powered search and information retrieval | Perplexity AI | |
| Firecrawl MCP Server | Web crawling and content extraction | Mendable AI | |
| Slide Speak MCP Server | Presentation and speech synthesis | ||
| Lara Translate MCP Server | Multi-language translation services | Translated | |
| Calculator MCP Server | Mathematical computations and calculations | Githejie | |
| Kiwi MCP Server | Flight search and booking using Kiwi.com | Kiwi.com | |
| National Parks MCP Server | Geographic and park information | KyrieTangSheng | |
| Context7 MCP Server | Up-to-date code docs for any programming library | Upstash | |
| DeepL MCP Server | Translation capabilities using the DeepL API | DeepLcom | |
| Wolfram MCP Server | Wolfram|Alpha, Wolfram Language kernel, and Knowledgebase access | Wolfram |
...and many more.
These are wrappers—original code by: Brave Software, Perplexity AI, Mendable AI, SlideSpeak, Translated, Githejie, Kiwi.com, KyrieTangSheng, Upstash, Financial Datasets, Microsoft, Wolfram, and others.
🚩 Claim this MCP server – If you are the original developer and would like to claim ownership or have any concerns, please write to ai@apify.com.
Each server can be installed and run independently:
# TypeScript servers
cd <server-name>
npm install
npm start
# Python servers
cd <server-name>
pip install -r requirements.txt
python -m src.main
Configure your MCP client (like Claude Desktop) to use these servers:
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@apify/brave-search-mcp-server"]
},
"calculator": {
"command": "python",
"args": ["-m", "src.main"],
"cwd": "./calculator-MCP-server"
}
}
}
When creating new MCP servers, you can use our pre-built templates:
mcp-servers/
├── <server-name>/
│ ├── src/ # Source code
│ ├── Dockerfile # Container configuration
│ ├── package.json # Node.js dependencies (TypeScript servers)
│ ├── requirements.txt # Python dependencies (Python servers)
│ └── README.md # Server-specific documentation
├── LICENSE # MIT License
├── CONTRIBUTING.md # Contribution guidelines
├── README.md # This file
This monorepo is maintained by Apify. We encourage you to build your own MCP servers using our templates—see the official MCP documentation and Apify MCP docs.
To report issues or request features, open an issue with details.
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.
Key benefits:
For the easiest setup and most powerful features, 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.
Learn how to build and monetize MCP servers on Apify:
Made with ❤️ and 🍺 by the Apify team
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@apify/brave-search-mcp-server"
],
"env": {}
},
"calculator": {
"command": "npx",
"args": [
"-y",
"@apify/calculator-mcp-server"
],
"env": {}
},
"deepl": {
"command": "npx",
"args": [
"-y",
"@apify/deepl-mcp-server"
],
"env": {}
}
}
}claude mcp add brave-search npx -y @apify/brave-search-mcp-server