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: fern/sdk/mcp-server.mdx
+46Lines changed: 46 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,52 @@ The Vapi MCP Server exposes these actions as MCP tools:
148
148
```
149
149
150
150
</Tab>
151
+
<Tabtitle="OpenAI responses API">
152
+
<Note>
153
+
The OpenAI <code>responses</code> API now supports MCP. <ahref="https://platform.openai.com/docs/guides/tools-remote-mcp#page-top"target="_blank"rel="noopener">Read more here</a>.
154
+
</Note>
155
+
<CodeBlocks>
156
+
```typescript title="typescript"
157
+
import OpenAI from 'openai';
158
+
// Replace with your actual OpenAI API key
159
+
const openai = new OpenAI({apiKey: 'YOUR_OPENAI_API_KEY'});
0 commit comments