OpenAI is winding down Agent Builder and Evals — your migration guide
OpenAI launched AgentKit at DevDay in October 2025. About eight months later, on June 3, 2026, it posted deprecation notices for two of AgentKit’s products: the visual Agent Builder and the Evals platform. Both are scheduled to leave the OpenAI platform on November 30, 2026. This is the calm, sourced walk-through: what was actually deprecated, the exact dates, the migration paths OpenAI recommends, and the broader lesson about building on an open standard rather than a single vendor’s agent platform. No gloating — just the facts and a plan.

On this page · 10 sections▾
TL;DR — what changed and by when
- Two products, not all of AgentKit. On June 3, 2026 OpenAI deprecated Agent Builder (the visual workflow canvas) and the Evals platform. Per the deprecation notice, “ChatKit remains available” — the embeddable chat UI toolkit is not part of this wind-down.
- Final date: November 30, 2026. Both products leave the platform that day. Evals additionally goes read-only on October 31, 2026, so export your datasets before then.
- Where OpenAI points you. For Agent Builder: the code-first Agents SDK or Workspace Agents in ChatGPT. For Evals: the deprecation guidance references migrating to Promptfoo.
- The lesson. A hosted visual builder is a proprietary surface a vendor can sunset on its own schedule. Your tool integrations don’t have to ride along — if they speak MCP, they port to any runtime. More in the hedge section.
What AgentKit was, briefly
OpenAI announced AgentKit at DevDay on October 6, 2025 as, in Sam Altman’s framing, “a complete set of building blocks… designed to help you take agents from prototype to production.” It bundled four pieces:
- Agent Builder — a visual, drag-and-drop canvas for composing multi-agent workflows, built on top of the Responses API, with preview runs, inline eval configuration, guardrails, and versioning. This is the piece most people meant when they said “AgentKit.”
- ChatKit — an embeddable, brandable chat UI toolkit for putting an agent in your own product. Not deprecated.
- Connector Registry — an admin panel for managing how data and tools (pre-built connectors plus third-party MCP servers) connect across ChatGPT and the API. Not named in the deprecation notice.
- Evals for agents — trace grading, datasets for component-level assessment, automated prompt optimization, and the ability to run evaluations on external models. The hosted Evals product is the second thing being wound down.
The pitch was “prototype to production without writing the orchestration yourself.” Agent Builder was the headline: a Canva-like canvas for agent logic. Eight months on, that headline is the thing going away.
What’s being deprecated — precisely
Precision matters here, because “OpenAI killed AgentKit” is the wrong headline and it’ll send you migrating things that don’t need migrating. Per OpenAI’s deprecations page and the Agent Builder deprecation notice:
Deprecated → Agent Builder
The hosted visual workflow canvas. Announced June 3, 2026; leaves the platform November 30, 2026. Migrate to the Agents SDK (code) or Workspace Agents in ChatGPT (natural language).
Deprecated → Evals platform
The hosted evaluation dashboard and API. Announced June 3, 2026; read-only October 31, 2026; shut down November 30, 2026. Deprecation guidance references moving to Promptfoo.
Staying → ChatKit
The embeddable chat UI toolkit. The notice explicitly says “ChatKit remains available.” You can keep shipping a ChatKit frontend; it just needs a backend you control (the Advanced integration path) once the OpenAI-hosted Agent Builder backend is gone.
Unaffected → MCP & connectors
The Connector Registry isn’t named in the notice, and MCP is an open standard, not an OpenAI product. Tool integrations that spoke MCP carry over to whatever runtime you choose next.
The exact timeline
Three dates to put on a calendar:
| Date | What happens |
|---|---|
| Oct 6, 2025 | AgentKit (incl. Agent Builder + Evals) announced at DevDay. |
| Jun 3, 2026 | Deprecation announced for Agent Builder and the Evals platform. |
| Oct 31, 2026 | Existing evals become read-only — export your datasets and graders before this. |
| Nov 30, 2026 | Agent Builder and the Evals dashboard/API leave the OpenAI platform. |
OpenAI says existing users can keep using both products through the transition window — nothing breaks the day the notice goes up. But the read-only cutover for Evals lands a month before the full shutdown, so treat October 31 as your real export deadline.
What to do now
If you have anything in Agent Builder or the Evals dashboard, here’s the order of operations.
If you use Agent Builder
- Export everything. Pull your workflows, prompts, guardrail configs, and tool wiring out of the canvas while it’s still live. Treat the export as your spec.
- Re-express the workflow as code. Each canvas node — an agent, a tool call, a handoff, a guardrail — maps to an object in the Agents SDK. It’s the same Responses API underneath, so the model and tool behavior should carry over; what you’re rebuilding is the orchestration the canvas was doing for you.
- Re-wire connectors and MCP servers. The tools your agent called don’t change. If you connected third-party MCP servers, point the SDK at the same ones.
- Keep your ChatKit frontend. ChatKit stays; swap its backend from OpenAI-hosted Agent Builder to your own Agents SDK service.
If you use the Evals platform
- Export before October 31, 2026. After that, evals go read-only and you can’t edit or re-run them on the platform.
- Pick a replacement harness. OpenAI’s guidance references Promptfoo; plenty of teams also run their own eval scripts. The important thing is owning your datasets and graders outside a single vendor’s dashboard.
Your options now
Strip away the branding and there are really two directions to go: stay closer to OpenAI’s code-first stack, or build on a framework-agnostic, MCP-based stack you can move between vendors. Both are legitimate. They optimize for different risks.
Option A — OpenAI Agents SDK
The path OpenAI recommends out of Agent Builder. An open-source Python/TypeScript framework on the Responses API, modeling agents, tools, handoffs, and guardrails as code. You trade the visual canvas for version-controllable, testable orchestration — and you’re still inside OpenAI’s API. Best if your stack is already OpenAI-centric and you just lost the builder.
Option B — framework-agnostic, MCP-based stack
Orchestrate with a framework that isn’t tied to one model vendor — see our comparison of LangGraph vs CrewAI vs Letta vs AutoGen — and connect your tools over MCP. The model provider becomes a swappable dependency; your tool layer survives a provider change. Best if vendor portability is the thing you can’t afford to lose.
A nuance worth stating plainly: choosing the Agents SDK isn’t a wrong answer. It’s code, it’s open-source, and it speaks MCP, so it’s far less locked-in than the visual builder was. The distinction between A and B is really about how much of your orchestration is willing to be OpenAI-shaped versus vendor-neutral.
The hedge: why teams build on MCP
The durable takeaway isn’t “OpenAI deprecates things.” Every platform sunsets products; an eight-month cycle is just unusually visible. The takeaway is about which layer of your stack absorbs the blow when it happens.
A hosted visual builder is a proprietary surface. Its file format, its node semantics, its hosting are the vendor’s to change or retire. When Agent Builder leaves, the orchestration you expressed in it has to be re-expressed somewhere else — that work is unavoidable.
What doesn’t have to be redone is your tool layer, if it speaks an open standard. The Model Context Protocol is a vendor-neutral way for agents to talk to tools and data. A tool exposed over MCP works the same whether it’s called from the Agents SDK, from LangGraph, from Claude, or from a client that doesn’t exist yet. That’s the hedge: keep the orchestration framework swappable and the tool integrations on an open protocol, so a deprecation costs you a framework migration, not a from-scratch rebuild of every connector.
This is also why the Connector Registry and MCP servers came through this episode untouched. Standards outlive the products built on top of them. If you’re re-architecting anyway, it’s the right moment to push tool access down onto MCP and treat the agent framework — OpenAI’s or anyone else’s — as the replaceable part. For securing those connections across machines, see our guide to secure MCP tunnels; for how the consumer-facing agent products stack up, see Cowork vs ChatGPT Agents vs Operator vs Manus.
Community signal
The deprecation was widely reported by practitioners within hours. The most common framing pointed straight at the migration options rather than the drama:
“OpenAI announces deprecation of Agent Builder. Migration options: Agents SDK, ChatGPT Workspace Agents.”
Johann Rehberger · X / Twitter
Security researcher Johann Rehberger (wunderwuzzi23), summarizing the deprecation and the two migration paths OpenAI named, June 2026.
That’s the right altitude to take it from. The news is operational, not existential: a hosted builder is going away, OpenAI has named replacements, and the dates are months out. The only mistake is doing nothing until late November.
Frequently asked questions
Is OpenAI AgentKit deprecated?
Not the whole of AgentKit — two of its products are. On June 3, 2026 OpenAI posted deprecation notices for Agent Builder (the visual workflow canvas) and the Evals platform. ChatKit, the embeddable chat UI toolkit, and the Connector Registry are not part of the same deprecation; OpenAI's notice states "ChatKit remains available." So the accurate phrasing is: AgentKit's Agent Builder and Evals are being wound down, not AgentKit as a brand.
When does OpenAI Agent Builder shut down?
November 30, 2026, per OpenAI's deprecation page. Agent Builder's deprecation was announced June 3, 2026, and the product is scheduled to stop being available on the OpenAI platform on November 30, 2026. Existing users can keep using it during the transition window, but should export workflows and plan a migration before that date.
Is OpenAI Evals being deprecated too?
Yes. The Evals platform was deprecated in the same June 3, 2026 notice. OpenAI's timeline has two milestones: existing evals become read-only on October 31, 2026, and the Evals dashboard and API shut down on November 30, 2026 — the same final date as Agent Builder.
What replaces OpenAI Agent Builder?
OpenAI recommends two migration paths. For workflows that should live as code, move to the OpenAI Agents SDK (the open-source Python/TypeScript framework built on the Responses API). For natural-language, non-developer use cases, OpenAI points to Workspace Agents in ChatGPT. There is no drop-in visual replacement for the Agent Builder canvas; the SDK is code-first.
What replaces OpenAI Evals?
OpenAI's deprecation guidance references moving from OpenAI Evals to Promptfoo, an open-source evaluation framework. Teams also commonly evaluate with their own harnesses or third-party tools. The practical step is to export your datasets and graders before evals go read-only on October 31, 2026.
How do I migrate from OpenAI Agent Builder to the Agents SDK?
At a high level: (1) export your Agent Builder workflows and prompts before November 30, 2026; (2) re-express each node as code using the OpenAI Agents SDK, which models agents, tools, handoffs, and guardrails as Python/TypeScript objects on the Responses API; (3) re-wire your data connectors (the Connector Registry and any third-party MCP servers you used still apply); (4) re-create your evals in your chosen evaluation tool. OpenAI's Agents SDK docs are the canonical reference for the API shapes.
Why did OpenAI deprecate Agent Builder so soon after launching it?
OpenAI launched AgentKit, including Agent Builder, at DevDay on October 6, 2025, and posted the deprecation notice on June 3, 2026 — roughly eight months later. OpenAI's public reasoning, per the notices, is consolidation: steering developers toward the code-first Agents SDK and toward Workspace Agents in ChatGPT rather than maintaining a separate hosted visual builder. Whatever the internal rationale, the short interval is the headline most coverage led with.
Does this deprecation affect MCP or the Connector Registry?
No. The Model Context Protocol (MCP) is an open standard, not an OpenAI product, so nothing about MCP changes. The Connector Registry — which managed pre-built and third-party MCP connectors across ChatGPT and the API — is not named in the June 3 deprecation notice. If your agent talked to tools over MCP, those integrations carry over to the Agents SDK or any other MCP-aware runtime.
Sources
Primary — OpenAI
- developers.openai.com — Deprecations — the Agent Builder and Evals deprecation entries, the Nov 30, 2026 shutdown date, the Oct 31, 2026 Evals read-only date, and the “ChatKit remains available” line.
- community.openai.com — Deprecation notice: Agent Builder — developer-forum thread carrying the notice and the ChatKit Advanced-integration migration path.
- developers.openai.com — Agents SDK guide — the recommended code-first migration target for Agent Builder workflows.
- openai.com — Introducing AgentKit — the original DevDay launch (Oct 6, 2025) describing Agent Builder, ChatKit, Connector Registry, and Evals.
Corroborating coverage
- TechCrunch — OpenAI launches AgentKit — independent account of the launch and its components.
- Johann Rehberger on X — early practitioner note on the deprecation and the two migration paths.
- promptfoo.dev — the open-source evaluation framework OpenAI’s Evals migration guidance points to.
Internal links
- /blog/what-is-mcp — the open standard your tool layer should sit on.
- /blog/langgraph-vs-crewai-vs-letta-vs-autogen-2026 — framework-agnostic orchestration options.
- /blog/cowork-vs-chatgpt-agents-vs-operator-vs-manus-2026 — the consumer agent products compared.
- /blog/openai-secure-mcp-tunnels-guide-2026 — securing MCP connections.
- /servers — browse all MCP servers