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
Copy file name to clipboardExpand all lines: sources/platform/actors/development/quick-start/build_with_ai.md
+49-28Lines changed: 49 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,34 +62,55 @@ We have prepared the [Apify MCP server configuration](https://mcp.apify.com/), w
62
62
63
63
:::
64
64
65
-
### Claude
66
-
67
-
1. Go to _Settings_ > _Connectors_ in Claude.
68
-
2. Click _Add custom connector_.
69
-
3. Set the name to `Apify` and the URL to `https://mcp.apify.com/?tools=docs`.
70
-
4. When chatting, click the _+_ button and select the _Apify_ connector to add documentation context.
71
-
72
-
### Cursor
73
-
74
-
1. Open the command palette with `Cmd+Shift+P` (or `Ctrl+Shift+P` on Windows).
75
-
2. Search for and select _Open MCP settings_.
76
-
3. Add the following configuration to `mcp.json`:
77
-
78
-
```json
79
-
{
80
-
"mcpServers": {
81
-
"apify": {
82
-
"url": "https://mcp.apify.com/?tools=docs"
83
-
}
84
-
}
85
-
}
86
-
```
87
-
88
-
### VS Code
89
-
90
-
1. Install an MCP-compatible extension.
91
-
2. Add the Apify server URL: `https://mcp.apify.com/?tools=docs`
92
-
65
+
<Tabs>
66
+
<TabItemvalue="cursor"label="Cursor">
67
+
68
+
To add Apify MCP server to Cursor manually:
69
+
70
+
1. Create or open the `.cursor/mcp.json` file.
71
+
1. Add the following to the configuration file:
72
+
73
+
```json
74
+
{
75
+
"mcpServers": {
76
+
"apify": {
77
+
"url": "https://mcp.apify.com/?tools=docs"
78
+
}
79
+
}
80
+
}
81
+
```
82
+
83
+
</TabItem>
84
+
<TabItemvalue="vscode"label="VS Code">
85
+
86
+
VS Code supports MCP through MCP-compatible extensions like _GitHub Copilot_, _Cline_, or _Roo Code_.
87
+
88
+
1. Install an MCP-compatible extension (e.g., GitHub Copilot, Cline).
89
+
1. Locate the extension's MCP settings or configuration file (often `mcp.json`).
90
+
- For _GitHub Copilot_: Run the **MCP: Open User Configuration** command.
91
+
- For _MCP-compatible extension_: Go to the MCP Servers tab in the extension interface.
92
+
1. Add the Apify server configuration:
93
+
94
+
```json
95
+
{
96
+
"mcpServers": {
97
+
"apify": {
98
+
"url": "https://mcp.apify.com/?tools=docs"
99
+
}
100
+
}
101
+
}
102
+
```
103
+
104
+
</TabItem>
105
+
<TabItemvalue="claude"label="Claude">
106
+
107
+
1. Go to **Settings** > **Connectors** in Claude.
108
+
1. Click **Add custom connector**.
109
+
1. Set the name to `Apify` and the URL to `https://mcp.apify.com/?tools=docs`.
110
+
1. When chatting, select the **+** button and choose the **Apify** connector to add documentation context.
111
+
112
+
</TabItem>
113
+
</Tabs>
93
114
## Provide context to assistants
94
115
95
116
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