Skip to content

Commit b4e8801

Browse files
Update openai.mdx
1 parent e998f82 commit b4e8801

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs-v2/pages/connect/mcp/openai.mdx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { Callout, Tabs, Steps } from 'nextra/components'
22

33
# Using Pipedream MCP with OpenAI
44

5-
Access {process.env.PUBLIC_APPS}+ APIs and 10,000+ tools in the OpenAI using Pipedream Connect. MCP makes it easy to extend the capabilties of any LLM or agent, and Pipedream offers drop-in support for [calling tools in OpenAI](https://platform.openai.com/docs/guides/tools?api-mode=responses) .
5+
Access {process.env.PUBLIC_APPS}+ APIs and 10,000+ tools in OpenAI using Pipedream Connect. MCP makes it easy to extend the capabilities of any LLM or agent, and Pipedream offers drop-in support for [calling tools in OpenAI](https://platform.openai.com/docs/guides/tools?api-mode=responses) .
66

77
<Callout type="info">
8-
Pipedream Connect includes built-in user authentication for [every MCP server](https://mcp.pipedream.com), which means you don't need to build any authorization flows or deal with token storage and refresh. [Learn more below](#account-connection).
8+
Pipedream Connect includes built-in user authentication for [every MCP server](https://mcp.pipedream.com), which means you don't need to build any authorization flows or deal with token storage and refresh in order to make authenticated requests on behalf of your users. [Learn more below](#account-connection).
99
</Callout>
1010

1111
### Getting started
@@ -27,11 +27,11 @@ These are requirements for you, the developer. Your users do **not** need to sig
2727
Now set the following environment variables (learn more about environments in Pipedream Connect [here](/connect/managed-auth/environments/)):
2828

2929
```bash
30+
OPENAI_API_KEY=your_openai_api_key
3031
PIPEDREAM_CLIENT_ID=your_client_id
3132
PIPEDREAM_CLIENT_SECRET=your_client_secret
3233
PIPEDREAM_PROJECT_ID=your_project_id
3334
PIPEDREAM_ENVIRONMENT=development
34-
OPENAI_API_KEY=your_openai_api_key
3535
```
3636

3737
### Discover available MCP servers
@@ -61,11 +61,10 @@ const slackApps = await pd.getApps({ q: "slack" });
6161

6262
### Generate a model response in OpenAI with Pipedream MCP
6363

64-
Below is an example showing how to:
64+
Below is an end to end example showing how to:
6565
1. Initialize the Pipedream SDK
66-
2. Identify the right MCP server based on the user's query
67-
3. Get an access token for authorization to Pipedream MCP
68-
4. Send a prompt to OpenAI with the MCP server as a tool call
66+
2. Find the relevant MCP server
67+
3. Send a prompt to OpenAI with the MCP server as a tool call
6968

7069
<Tabs items={['Node.js', 'cURL']}>
7170
<Tabs.Tab>

0 commit comments

Comments
 (0)