Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ toc_max_heading_level: 4

import { AGENTS_PROMPT } from "@site/src/utils/agents-prompt";
import PromptButton from "@site/src/components/PromptButton";
import InstallMCPButton from "@site/src/components/InstallMCPButton";
import copyForAI from "./images/copy-for-ai.png";

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.
Expand Down Expand Up @@ -61,6 +60,34 @@ We have prepared the [Apify MCP server configuration](https://mcp.apify.com/), w

:::

### Claude

1. Go to _Settings_ > _Connectors_ in Claude.
2. Click _Add custom connector_.
3. Set the name to `Apify` and the URL to `https://mcp.apify.com/?tools=docs`.
4. When chatting, click the _+_ button and select the _Apify_ connector to add documentation context.

### Cursor

1. Open the command palette with `Cmd+Shift+P` (or `Ctrl+Shift+P` on Windows).
2. Search for and select _Open MCP settings_.
3. Add the following configuration to `mcp.json`:

```json
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=docs"
}
}
}
```

### VS Code

1. Install an MCP-compatible extension.
2. Add the Apify server URL: `https://mcp.apify.com/?tools=docs`

## 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.
Expand Down
26 changes: 0 additions & 26 deletions src/components/InstallMCPButton.jsx

This file was deleted.

54 changes: 0 additions & 54 deletions src/components/InstallMCPButton.module.css

This file was deleted.