Skip to content

Commit 6c0a7eb

Browse files
committed
fix: Final touches, polish
1 parent d669538 commit 6c0a7eb

File tree

3 files changed

+22
-24
lines changed

3 files changed

+22
-24
lines changed

sources/platform/integrations/ai/chatgpt.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,25 @@ slug: /integrations/chatgpt
1010

1111
---
1212

13-
ChatGPT provides easy conversational access to OpenAI's large language models (LLMs).
14-
Until recently, ChatGPT could access third-party data only through plugins or direct API calls.
15-
Now, OpenAI supports the [Model Context Protocol (MCP)](https://openai.com/research/model-context-protocol), which enables integration with web data using Apify Actors.
13+
The _ChatGPT_ integration enables you to connect ChatGPT to Apify's extensive library of Actors through the [Model Context Protocol (MCP)](https://openai.com/research/model-context-protocol). This allows ChatGPT to use Apify tools and Actors directly in conversations, providing real-time web data access and automation capabilities.
1614

1715
In this tutorial, you'll learn how to connect ChatGPT to the **Apify MCP server** using a custom connector.
18-
This allows ChatGPT to use Apify tools and Actors directly in conversations.
1916

2017
## Prerequisites
2118

22-
To use the Apify MCP server with ChatGPT, you need:
19+
Before connecting ChatGPT to Apify, you'll need:
2320

24-
- An [Apify account and API token](https://docs.apify.com/platform/integrations/api#api-token)
25-
- An OpenAI account with access to ChatGPT
26-
- ChatGPT with **Developer Mode** enabled
21+
- _An Apify account_ - Sign up for an Apify account, if you don't have one.
22+
- _Apify API token_ - Get your API token from the **Integrations** section in [Apify Console](https://console.apify.com/account#/integrations). This token authorizes the MCP server to run Actors on your behalf. Make sure to keep it secure.
23+
- _An OpenAI account with access to ChatGPT_ - You need an OpenAI account to use ChatGPT.
24+
- _ChatGPT with Developer Mode enabled_ - You must enable [Developer Mode](https://platform.openai.com/docs/guides/developer-mode) to add custom connectors.
2725

2826
## Enable developer mode in ChatGPT
2927

3028
You must enable [Developer Mode](https://platform.openai.com/docs/guides/developer-mode) in ChatGPT to add custom connectors like the Apify MCP server.
3129
When Developer Mode is active, the message input box is outlined in orange.
3230

33-
## Create a connector
31+
## Create an MCP connector
3432

3533
1. In ChatGPT, go to **Settings → Apps & Connectors → Create**. If you don't see the **Create** button, enable developer mode or reload the page.
3634

@@ -44,13 +42,15 @@ When Developer Mode is active, the message input box is outlined in orange.
4442
(See [mcp.apify.com](https://mcp.apify.com) for details.)
4543
- **Authentication** – OAuth, you don’t need to provide a client ID or secret.
4644

45+
![ChatGPT Create connect](../images/chatgpt-connector.png)
46+
4747
:::caution ChatGPT currently cannot change selected tools after connector creation
4848
At the moment, ChatGPT does not allow modifying the selected tools after the connector is created.
4949
If you need to add or remove tools later, you’ll need to create a new connector.
5050

5151
If you try to use a connector with social media scrapers like Instagram or TikTok, you may see the error:
5252
"Something went wrong with setting up the connection."
53-
This error typically occurs for social media scrapers like Instagram, TikTok, etc.
53+
This error typically occurs for social media scrapers like Instagram, TikTok, etc.
5454
But you can still use these Actors with ChatGPT by including them when initially setting up the connector.
5555

5656
:::
@@ -63,7 +63,7 @@ Ensure you're logged into the correct Apify account before approving access.
6363

6464
Once authorized, you’ll return to ChatGPT and see a success message with a list of tools available from the Apify MCP server.
6565

66-
## Try the connector
66+
## Try the MCP connector in ChatGPT
6767

6868
Once your connector is ready:
6969

@@ -79,17 +79,16 @@ You should see ChatGPT calling Apify tools — such as the [RAG Web Browser](htt
7979

8080
![ChatGPT Apify tools](../images/chatgpt-with-rag-web-browser.png)
8181

82-
## Use any actor with ChatGPT
82+
## Use any Actor with ChatGPT
8383

84-
You can use any [Apify Actor](https://apify.com/store) with ChatGPT.
85-
By default, the Apify MCP server exposes a set of tools that lets you search and use Actors directly.
84+
You can use any [Apify Actor](https://apify.com/store) with ChatGPT. By default, the Apify MCP server exposes a set of tools that lets you search and use Actors directly.
8685

8786
**Example query:**
8887

89-
> Find and run an Actor that scrapes Instagram profiles, and get the profile of @natgeo
88+
> "Find and run an Actor that scrapes Instagram profiles, and get the profile of @natgeo"
9089
9190

92-
# Limitations
91+
## Limitations
9392

9493
- MCP integration in ChatGPT is still in **beta** and may have some limitations or bugs.
9594
- Tool selection and execution can be **slow**, especially with the latest GPT models.
@@ -100,9 +99,9 @@ By default, the Apify MCP server exposes a set of tools that lets you search and
10099
- [OpenAI Assistants integration](/platform/integrations/openai-assistants) — Use Apify Actors with OpenAI Assistants API via function calling
101100
- [OpenAI Agents SDK integration](/platform/integrations/openai-agents) — Integrate Apify MCP server with OpenAI Agents SDK
102101

103-
## References
102+
## Resources
104103

105-
- [ChatGPT Developer Mode](https://platform.openai.com/docs/guides/developer-mode)
106-
- [Connectors and MCP servers](https://platform.openai.com/docs/guides/tools-connectors-mcp)
107-
- [Apify MCP server](https://mcp.apify.com)
108-
- [Apify MCP documentation](https://docs.apify.com/platform/integrations/mcp)
104+
- [ChatGPT Developer Mode](https://platform.openai.com/docs/guides/developer-mode) - Learn how to enable Developer Mode in ChatGPT
105+
- [Connectors and MCP servers](https://platform.openai.com/docs/guides/tools-connectors-mcp) - Official OpenAI documentation on using MCP servers with ChatGPT
106+
- [Apify MCP server](https://mcp.apify.com) - Interactive configuration tool for the Apify MCP server
107+
- [Apify MCP documentation](/platform/integrations/mcp) - Complete guide to using the Apify MCP server

sources/platform/integrations/ai/openai_agents.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: OpenAI Agents SDK integration
33
sidebar_label: OpenAI Agents SDK
4-
description: Learn how to integrate Apify with OpenAI Agents SDK using Model Context Protocol to build AI agents with web data access.
4+
description: Learn how to integrate Apify with the OpenAI Agents SDK using the Model Context Protocol to build AI agents with web data access.
55
sidebar_position: 11
66
slug: /integrations/openai-agents
77
---
88

99
The _OpenAI Agents Python SDK_ enables you to build AI agents powered by OpenAI's language models that can use tools, manage context, and interact with external systems through the [Model Context Protocol (MCP)](https://openai.com/research/model-context-protocol). By connecting to the Apify MCP server, your agents can access Apify's extensive library of Actors to perform web scraping, data extraction, and automation tasks in real time.
1010

11-
For more in-depth details on OpenAI Agents SDK, check out its [official documentation](https://openai.github.io/openai-agents-python/).
11+
For more details about the OpenAI Agents SDK, see the [official documentation](https://openai.github.io/openai-agents-python/).
1212

1313
## Prerequisites
1414

@@ -66,7 +66,6 @@ if __name__ == "__main__":
6666
asyncio.run(main())
6767
```
6868
69-
7069
#### Configuration options
7170
7271
The `MCPServerStreamableHttp` connects to the Apify MCP server using streamable HTTP. Key configuration options:
-69.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)