Skip to content

Commit 88b0c41

Browse files
muhammetakkurttmarcel-rbroclaude
authored
docs: add Antigravity editor support (#2203)
Add explicit documentation for configuring Apify MCP Server with the Antigravity editor manually. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Introduces explicit Antigravity support and setup in the AI build guide. > > - Adds Antigravity to recommended AI assistants and Quick Start steps > - New `Antigravity` tab with manual MCP server configuration (JSON using `npx @apify/actors-mcp-server` and `APIFY_TOKEN`) > - Updates references so the prompt/instructions include Antigravity alongside Cursor, Claude Code, and VS Code > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit b5df9bb. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Marcel Rebro <marcel.rebro@apify.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent ea5d9a4 commit 88b0c41

File tree

1 file changed

+32
-4
lines changed

1 file changed

+32
-4
lines changed

sources/platform/actors/development/quick-start/build_with_ai.md

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ import copyForAI from "./images/copy-for-ai.png";
1717
import Tabs from '@theme/Tabs';
1818
import TabItem from '@theme/TabItem';
1919

20-
This guide provides best practices for building new Actors or improving existing ones using AI code generation and vibe coding tools such as Cursor, Claude Code, or Visual Studio Code, by providing the AI agents with the right instructions and context.
20+
This guide provides best practices for building new Actors or improving existing ones using AI code generation and vibe coding tools such as Antigravity, Cursor, Claude Code, or Visual Studio Code, by providing the AI agents with the right instructions and context.
2121

2222
## AI coding assistant instructions
2323

24-
Use the following prompt in your AI coding assistant such as [Cursor](https://cursor.com/), [Claude Code](https://claude.com/product/claude-code) or [GitHub Copilot](https://github.com/features/copilot):
24+
Use the following prompt in your AI coding assistant such as [Antigravity](https://antigravity.google/), [Cursor](https://cursor.com/), [Claude Code](https://claude.com/product/claude-code) or [GitHub Copilot](https://github.com/features/copilot):
2525

2626
<PromptButton prompt={AGENTS_PROMPT} title="Use pre-built prompt for your AI coding assistant" />
2727

28-
The prompt guides AI coding assistants such as Cursor, Claude Code or GitHub Copilot to help users create and deploy an Apify Actor step by step. It walks through setting up the Actor structure, configuring all required files, installing dependencies, running it locally, logging in, and pushing it to the Apify platform and following Apify’s best practices.
28+
The prompt guides AI coding assistants such as Antigravity, Cursor, Claude Code or GitHub Copilot to help users create and deploy an Apify Actor step by step. It walks through setting up the Actor structure, configuring all required files, installing dependencies, running it locally, logging in, and pushing it to the Apify platform and following Apify’s best practices.
2929

3030
### Quick Start
3131

3232
1. Create directory: `mkdir my-new-actor`
33-
1. Open the directory in _Cursor_, _Claude Code_, _VS Code with GitHub Copilot_, etc.
33+
1. Open the directory in _Antigravity_, _Cursor_, _Claude Code_, _VS Code with GitHub Copilot_, etc.
3434
1. Copy the prompt above and paste it into your AI coding assistant (Agent or Chat)
3535
1. Run it, and develop your first actor with the help of AI
3636

@@ -109,8 +109,36 @@ VS Code supports MCP through MCP-compatible extensions like _GitHub Copilot_, _C
109109
1. Set the name to `Apify` and the URL to `https://mcp.apify.com/?tools=docs`.
110110
1. When chatting, select the **+** button and choose the **Apify** connector to add documentation context.
111111

112+
</TabItem>
113+
<TabItem value="antigravity" label="Antigravity">
114+
115+
To add Apify MCP server to Antigravity:
116+
117+
1. Click on the **Chat tab**.
118+
2. Click the three dots (**Additional options**) menu.
119+
3. Select **Manage MCP Servers**.
120+
4. Click **View raw config** to open the configuration file.
121+
5. Add the following to the configuration file:
122+
123+
```json
124+
{
125+
"mcpServers": {
126+
"apify": {
127+
"command": "npx",
128+
"args": [
129+
"-y",
130+
"@apify/actors-mcp-server",
131+
"--tools",
132+
"docs"
133+
]
134+
}
135+
}
136+
}
137+
```
138+
112139
</TabItem>
113140
</Tabs>
141+
114142
## Provide context to assistants
115143

116144
Every page in the Apify documentation has a **Copy for LLM** button. You can use it to add additional context to your AI assistant, or even open the page in ChatGPT, Claude, or Perplexity and ask additional questions.

0 commit comments

Comments
 (0)