Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Apify
layers

Apify MCP Server

MCP server for Apify web scraping platform

apifyscrapingautomationactors

About

## Apify MCP Server: Web Scraping and Automation Platform The **Apify MCP Server** integrates the web scraping platform into Google Antigravity, enabling developers to run actors, manage datasets, and automate web data extraction at scale. ### Why Apify MCP? - **Actor ecosystem** - 1000+ ready-to-use scrapers - **Scalable crawling** - Distributed web crawling - **Dataset management** - Store and export scraped data - **Proxy rotation** - Built-in proxy infrastructure - **Scheduling** - Automated actor runs ### Key Features #### 1. Actor Execution ```python # Run actor run = await mcp.call("apify", "run_actor", { "actor_id": "apify/web-scraper", "input": { "startUrls": [{"url": "https://example.com"}] } }) print(f"Run ID: {run[\"id\"]}") # Wait for completion result = await mcp.call("apify", "wait_for_run", { "run_id": run["id"] }) ``` #### 2. Dataset Access ```python # Get dataset items items = await mcp.call("apify", "get_dataset", { "dataset_id": run["defaultDatasetId"], "limit": 100 }) for item in items: print(f"Title: {item[\"title\"]}") # Export dataset export = await mcp.call("apify", "export_dataset", { "dataset_id": run["defaultDatasetId"], "format": "json" }) ``` #### 3. Key-Value Store ```python # Store data await mcp.call("apify", "set_value", { "store_id": "default", "key": "last_run_timestamp", "value": "2024-01-15T10:00:00Z" }) # Get data value = await mcp.call("apify", "get_value", { "store_id": "default", "key": "last_run_timestamp" }) ``` #### 4. Task Scheduling ```python # Create scheduled task task = await mcp.call("apify", "create_task", { "actor_id": "apify/web-scraper", "name": "Daily Scrape", "options": {"cron": "0 9 * * *"} }) # List task runs runs = await mcp.call("apify", "list_task_runs", { "task_id": task["id"] }) ``` ### Configuration ```json { "mcpServers": { "apify": { "command": "npx", "args": ["-y", "@anthropic/mcp-apify"], "env": { "APIFY_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Data Extraction**: Scrape data from any website. **Price Monitoring**: Track competitor prices. **Lead Generation**: Extract business contact data. **Content Aggregation**: Collect content from sources. The Apify MCP Server enables scalable web scraping.

Installation

Configuration
{
  "mcpServers": {
    "apify": {
      "mcpServers": {
        "apify": {
          "env": {
            "APIFY_TOKEN": "YOUR_APIFY_TOKEN"
          },
          "args": [
            "-y",
            "@apify/mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get token from Apify console
  2. 22. Access thousands of pre-built scrapers
  3. 33. Free tier with $5 credits monthly

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers