-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Labels
Description
Google Antigravity, is one of a core platform for agentic development. Since Antigravity supports MCP natively, adding specific configuration instructions to the documentation would help users integrate Firecrawl’s scraping and searching tools into their agentic workflows.
Proposed Documentation Addition:
Running on Google Antigravity
Google Antigravity allows you to configure MCP servers directly through its Agent interface.
- Open the Agent sidebar in the Editor or the Agent Manager view.
- Click the "..." (More Actions) menu and select MCP Servers.
- Select "View raw config" to open your local mcp_config.json file.
- Add the following block to your mcp_config.json file:
{
"mcpServers": {
"firecrawl": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": {
"FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
}
}
}
}
- Save the file and hit Refresh in the Antigravity MCP interface to see the new tools.
I've tested this in my IDE, and can confirm that it works!