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
Firecrawl
globe

Firecrawl MCP Server

Official Firecrawl MCP server for web scraping

firecrawlscrapingcrawlingwebsearch

About

## Firecrawl MCP Server: AI-Powered Web Scraping The **Firecrawl MCP Server** integrates the AI-optimized web scraping service into Google Antigravity, enabling developers to crawl websites and extract clean, structured data optimized for LLM consumption. ### Why Firecrawl MCP? - **LLM-optimized** - Output formatted for AI models - **Smart crawling** - Automatic link following - **Clean extraction** - Remove ads, navigation, clutter - **Markdown output** - Clean markdown formatting - **JavaScript rendering** - Handle dynamic content ### Key Features #### 1. Page Scraping ```python # Scrape single page page = await mcp.call("firecrawl", "scrape", { "url": "https://example.com/article", "formats": ["markdown", "html"] }) print(f"Title: {page[\"metadata\"][\"title\"]}") print(f"Content length: {len(page[\"markdown\"])}") ``` #### 2. Site Crawling ```python # Crawl entire site crawl = await mcp.call("firecrawl", "crawl", { "url": "https://docs.example.com", "limit": 100, "max_depth": 3 }) print(f"Crawl ID: {crawl[\"id\"]}") # Get crawl status status = await mcp.call("firecrawl", "get_crawl_status", { "crawl_id": crawl["id"] }) print(f"Pages crawled: {status[\"completed\"]}/{status[\"total\"]}") ``` #### 3. Structured Extraction ```python # Extract with schema data = await mcp.call("firecrawl", "extract", { "url": "https://example.com/product", "schema": { "type": "object", "properties": { "name": {"type": "string"}, "price": {"type": "number"} } } }) print(f"Product: {data[\"name\"]} - ${data[\"price\"]}") ``` #### 4. Batch Processing ```python # Scrape multiple URLs results = await mcp.call("firecrawl", "batch_scrape", { "urls": [ "https://example.com/page1", "https://example.com/page2" ] }) for result in results: print(f"URL: {result[\"url\"]}") ``` ### Configuration ```json { "mcpServers": { "firecrawl": { "command": "npx", "args": ["-y", "@anthropic/mcp-firecrawl"], "env": { "FIRECRAWL_API_KEY": "fc-xxx" } } } } ``` ### Use Cases **RAG Data Collection**: Gather data for AI retrieval. **Documentation Ingestion**: Crawl docs for knowledge bases. **Content Analysis**: Extract clean content for analysis. **Competitive Intel**: Monitor competitor websites. The Firecrawl MCP Server enables AI-optimized web scraping.

Installation

Configuration
{
  "mcpServers": {
    "firecrawl": {
      "mcpServers": {
        "firecrawl": {
          "env": {
            "FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
          },
          "args": [
            "-y",
            "firecrawl-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get API key from firecrawl.dev/app/api-keys
  2. 22. Scrape single pages or crawl entire sites
  3. 33. Returns content in markdown/JSON format

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