OpenAI for your agents.
Connect OpenAI once and every agent you run inside Even (Claude Code, Codex, OpenCode, Even Agents) can use it: 21 curated tools, discovered on demand, with your key stored on your machine and every call going direct to OpenAI.
What agents can do with OpenAI
Curated for agents: the calls that matter, with schemas and descriptions written for tool use, not an endpoint dump.
openai_list_modelsList models available to this key.
openai_chatOne-shot chat completion. `messages` is the standard [{role, content}] array.
openai_get_modelRetrieve metadata for one model by id (owner, created).
openai_create_embeddingCreate embedding vectors for text. `input` is a string or array of strings; `model` e.g. text-embedding-3-small.
openai_generate_imageGenerate images from a text prompt. `model` e.g. gpt-image-1 or dall-e-3; `size` e.g. 1024x1024.
openai_create_moderationClassify whether text (or image) input is potentially harmful across OpenAI's policy categories.
openai_transcribe_audioTranscribe speech to text. Multipart form upload: `file` is the audio file, `model` e.g. whisper-1 or gpt-4o-transcribe.
openai_text_to_speechSynthesize speech audio from text. `input` is the text; `voice` e.g. alloy; returns audio bytes.
openai_list_filesList files uploaded to your organization (for fine-tuning, batches, assistants).
openai_upload_fileUpload a file for later use. Multipart form: `file` is the content, `purpose` e.g. batch or fine-tune.
openai_create_batchStart an async batch job over a previously uploaded JSONL file. `input_file_id` is that file; `endpoint` is the target API, e.g. /v1/chat/completions.
openai_list_batchesList batch jobs and their status.
openai_get_fileGet a single uploaded file by id.
openai_delete_fileDelete a previously uploaded file.
openai_get_batchGet the status and details of a batch job.
openai_cancel_batchCancel a running batch job.
openai_list_fine_tune_jobsList fine-tuning jobs.
openai_create_fine_tune_jobStart a fine-tuning job from a training file.
openai_get_fine_tune_jobGet the status and details of a fine-tuning job.
openai_cancel_fine_tune_jobCancel a running fine-tuning job.
openai_list_fine_tune_eventsList events (log entries) from a fine-tuning job.
Connect it in a minute
The connect flow is agent-driven: Even opens the key page in its own browser and collects the key through a secure native field. It never passes through the chat.
- Paste the prompt below into any agent running inside Even, or click Connect in Even's catalog.
- Click 'Create new secret key'.
- Scope it to a project if you use projects.
- Copy the key; it is shown once.
- Paste the key into Even's secure field. Even verifies it and your agents are live.
Connect OpenAI to Even: call connect_begin("openai") on the even-connect MCP and walk me through it.
List OpenAI models, send messages to Claude, generate images, create embeddings, and run batch processing jobs.
More Even Connect services
One MCP server, a handful of meta-tools, every service below. Agents search for the right tool at run time, so context stays lean.