From b5df9bb2dca1bab7ded95f327d5534180ba5a2fe Mon Sep 17 00:00:00 2001 From: Muhammet Akkurt Date: Thu, 22 Jan 2026 22:53:57 +0300 Subject: [PATCH 1/2] docs: add Antigravity editor support --- .../development/quick-start/build_with_ai.md | 40 +++++++++++++++++-- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/sources/platform/actors/development/quick-start/build_with_ai.md b/sources/platform/actors/development/quick-start/build_with_ai.md index 754e440483..7de926efa4 100644 --- a/sources/platform/actors/development/quick-start/build_with_ai.md +++ b/sources/platform/actors/development/quick-start/build_with_ai.md @@ -17,20 +17,20 @@ import copyForAI from "./images/copy-for-ai.png"; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -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. +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. ## AI coding assistant instructions -Use the following prompt in your AI coding assistant such as [Cursor](https://www.cursor.com/), [Claude Code](https://www.claude.com/product/claude-code) or [GitHub Copilot](https://github.com/features/copilot): +Use the following prompt in your AI coding assistant such as [Antigravity](https://antigravity.google/), [Cursor](https://www.cursor.com/), [Claude Code](https://www.claude.com/product/claude-code) or [GitHub Copilot](https://github.com/features/copilot): -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. +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. ### Quick Start 1. Create directory: `mkdir my-new-actor` -1. Open the directory in _Cursor_, _Claude Code_, _VS Code with GitHub Copilot_, etc. +1. Open the directory in _Antigravity_, _Cursor_, _Claude Code_, _VS Code with GitHub Copilot_, etc. 1. Copy the prompt above and paste it into your AI coding assistant (Agent or Chat) 1. Run it, and develop your first actor with the help of AI @@ -109,8 +109,40 @@ VS Code supports MCP through MCP-compatible extensions like _GitHub Copilot_, _C 1. Set the name to `Apify` and the URL to `https://mcp.apify.com/?tools=docs`. 1. When chatting, select the **+** button and choose the **Apify** connector to add documentation context. + + + +To add Apify MCP server to Antigravity: + +1. Click on the **Chat tab**. +2. Click the three dots (**Additional options**) menu. +3. Select **Manage MCP Servers**. +4. Click **View raw config** to open the configuration file. +5. Add the following to the configuration file: + + ```json + { + "mcpServers": { + "apify": { + "command": "npx", + "args": [ + "-y", + "@apify/actors-mcp-server", + "--tools", + "docs" + ], + "env": { + "APIFY_TOKEN": "YOUR_APIFY_TOKEN" + } + } + } + } + ``` + > _Apify API token_ - Get your API token from the **Integrations** section in [Apify Console](https://console.apify.com/account#/integrations). + + ## Provide context to assistants 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. From 9f6040100ab3467a89b259480914fe076bc3f371 Mon Sep 17 00:00:00 2001 From: Muhammet Date: Wed, 28 Jan 2026 16:33:16 +0300 Subject: [PATCH 2/2] Update sources/platform/actors/development/quick-start/build_with_ai.md Co-authored-by: Marcel Rebro --- .../platform/actors/development/quick-start/build_with_ai.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sources/platform/actors/development/quick-start/build_with_ai.md b/sources/platform/actors/development/quick-start/build_with_ai.md index 7de926efa4..3abe611222 100644 --- a/sources/platform/actors/development/quick-start/build_with_ai.md +++ b/sources/platform/actors/development/quick-start/build_with_ai.md @@ -138,7 +138,9 @@ To add Apify MCP server to Antigravity: } } ``` - > _Apify API token_ - Get your API token from the **Integrations** section in [Apify Console](https://console.apify.com/account#/integrations). + :::note Apify API token + Get your API token from the **Integrations** section in [Apify Console](https://console.apify.com/account#/integrations). + :::