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/integrations/ai/chatgpt.md
+20-21Lines changed: 20 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,27 +10,25 @@ slug: /integrations/chatgpt
10
10
11
11
---
12
12
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.
16
14
17
15
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.
19
16
20
17
## Prerequisites
21
18
22
-
To use the Apify MCP server with ChatGPT, you need:
19
+
Before connecting ChatGPT to Apify, you'll need:
23
20
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.
27
25
28
26
## Enable developer mode in ChatGPT
29
27
30
28
You must enable [Developer Mode](https://platform.openai.com/docs/guides/developer-mode) in ChatGPT to add custom connectors like the Apify MCP server.
31
29
When Developer Mode is active, the message input box is outlined in orange.
32
30
33
-
## Create a connector
31
+
## Create an MCP connector
34
32
35
33
1. In ChatGPT, go to **Settings → Apps & Connectors → Create**. If you don't see the **Create** button, enable developer mode or reload the page.
36
34
@@ -44,13 +42,15 @@ When Developer Mode is active, the message input box is outlined in orange.
44
42
(See [mcp.apify.com](https://mcp.apify.com) for details.)
45
43
-**Authentication** – OAuth, you don’t need to provide a client ID or secret.
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.
86
85
87
86
**Example query:**
88
87
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"
90
89
91
90
92
-
# Limitations
91
+
##Limitations
93
92
94
93
- MCP integration in ChatGPT is still in **beta** and may have some limitations or bugs.
95
94
- 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
100
99
-[OpenAI Assistants integration](/platform/integrations/openai-assistants) — Use Apify Actors with OpenAI Assistants API via function calling
101
100
-[OpenAI Agents SDK integration](/platform/integrations/openai-agents) — Integrate Apify MCP server with OpenAI Agents SDK
-[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
Copy file name to clipboardExpand all lines: sources/platform/integrations/ai/openai_agents.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
title: OpenAI Agents SDK integration
3
3
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.
5
5
sidebar_position: 11
6
6
slug: /integrations/openai-agents
7
7
---
8
8
9
9
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.
10
10
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/).
12
12
13
13
## Prerequisites
14
14
@@ -66,7 +66,6 @@ if __name__ == "__main__":
66
66
asyncio.run(main())
67
67
```
68
68
69
-
70
69
#### Configuration options
71
70
72
71
The `MCPServerStreamableHttp` connects to the Apify MCP server using streamable HTTP. Key configuration options:
0 commit comments