OpenAI

Models, files, and fine-tunes via the OpenAI platform.

Auth: API keyCatalog preview
Tools

What your agent can do with OpenAI

OPENAI_SEARCH

Search across OpenAI records and content.

OPENAI_CREATE

Create a new item in OpenAI with validated fields.

OPENAI_UPDATE

Update an existing OpenAI item by id.

OPENAI_LIST

List and filter OpenAI items with pagination.

Setup
Option A — MCP (no code)
  1. Sign up and connect OpenAI from your dashboard.
  2. Copy your gateway URL: mcp.conduit.dev/you
  3. Paste it into Claude, Cursor, or any MCP client.
Option B — API
curl -X POST https://api.conduit.dev/v1/tools/execute \
  -H "Authorization: Bearer $API_KEY" \
  -d '{
    "tool_slug": "OPENAI_CREATE",
    "external_user_id": "user_123",
    "arguments": { ... }
  }'