You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
Copy file name to clipboardExpand all lines: sources/platform/actors/development/quick-start/build_with_ai.md
+32-4Lines changed: 32 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,20 +17,20 @@ import copyForAI from "./images/copy-for-ai.png";
17
17
import Tabs from '@theme/Tabs';
18
18
import TabItem from '@theme/TabItem';
19
19
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.
21
21
22
22
## AI coding assistant instructions
23
23
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):
25
25
26
26
<PromptButtonprompt={AGENTS_PROMPT}title="Use pre-built prompt for your AI coding assistant" />
27
27
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.
29
29
30
30
### Quick Start
31
31
32
32
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.
34
34
1. Copy the prompt above and paste it into your AI coding assistant (Agent or Chat)
35
35
1. Run it, and develop your first actor with the help of AI
36
36
@@ -109,8 +109,36 @@ VS Code supports MCP through MCP-compatible extensions like _GitHub Copilot_, _C
109
109
1. Set the name to `Apify` and the URL to `https://mcp.apify.com/?tools=docs`.
110
110
1. When chatting, select the **+** button and choose the **Apify** connector to add documentation context.
111
111
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
+
112
139
</TabItem>
113
140
</Tabs>
141
+
114
142
## Provide context to assistants
115
143
116
144
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