At a glance
- OpenAI began rolling out GPT-6 Astra, a 1M-context computer-use and coding flagship priced at $10/$50 per million tokens.
- LangChain 1.4 folds MCP into
langchain.mcpwith MCPAdapter, FastMCP, and elicitation as LangGraph interrupts. - GitHub Copilot added Gemini 3.8 Flash and will retire four older models, including Claude Opus 4.7, on October 2.
- Cursor now runs cloud-agent tool calls on self-hosted machines inside your network, with dynamic pools and Linux/Mac computer use.
The last 48 hours compressed a full-stack reset for anyone shipping agents. OpenAI put GPT-6 Astra on a limited Trusted Access / Daybreak path with API, Azure, Bedrock, and paid ChatGPT surfaces following in days, positioning it as a computer-use, browsing, and software-engineering specialist rather than another chat model. LangChain stopped treating MCP as an adapters afterthought and moved it into the main package, so tool servers, protocol negotiation, and mid-call elicitation now sit next to create_agent. GitHub Copilot simultaneously promoted Gemini 3.8 Flash across IDEs, CLI, and the cloud agent while putting Gemini 3.5/3.6 Flash, Kimi K2.7 Code, and Claude Opus 4.7 on a hard October 2 clock. Cursor closed the residency gap: inference can stay in their cloud while file edits, builds, and browser control happen on machines you already operate.
Treat today as a stack-reset morning. If your sprint board still says "try the new model later," it is already late. Model pickers, MCP clients, Copilot policies, and where the agent actually executes all moved together.
Top Stories
OpenAI starts rolling out GPT-6 Astra for computer use, coding, and long-horizon work
Practical dev impact: Target gpt-6-astra in the Responses API, Codex, and forthcoming Plus/Pro/Business/Enterprise surfaces for multi-step computer and browser workflows, async tool calling, and a ~1.05M-token context. OpenAI frames Astra as its most aligned computer-use model yet and the first to hit the Critical cybersecurity threshold under its Preparedness Framework, so exploit-class capabilities stay gated. Pricing lands at $10 input / $50 output per million tokens, matching the current Fable 5.1 band, while rollout started September 3 for a limited set of organizations with broader API and ChatGPT access in the following days.
LangChain moves MCP into the main package with MCPAdapter and elicitation interrupts
Practical dev impact: Install pip install "langchain[mcp]" and replace langchain-mcp-adapters / MultiServerMCPClient with a single MCPAdapter that speaks FastMCP, negotiates old and new MCP specs, caches tool lists, and surfaces mid-call elicitation as a LangGraph interrupt you already know how to resume. Support now lives in langchain.mcp (beta in 1.4.x): URL, stdio, in-process FastMCP, or a prebuilt client all collapse to one context manager, then list_tools() feeds create_agent directly.
GitHub Copilot ships Gemini 3.8 Flash and will retire four models on October 2
Practical dev impact: Select Gemini 3.8 Flash now in VS Code, Visual Studio, JetBrains, Copilot CLI, Xcode, Eclipse, and the cloud agent (Pro and above; Business/Enterprise via model policy); plan to leave Gemini 3.5 Flash, Gemini 3.6 Flash, Kimi K2.7 Code, and Claude Opus 4.7 before October 2. GitHub's early testing called out stronger terminal coding and recovery from failed steps. Flash is on introductory provider pricing through December 31; admins who disabled default new-model enablement must flip the policy or users will not see it.
Cursor launches self-hosted machines so agents execute tools inside your network
Practical dev impact: Keep the repo, secrets, and build graph on laptops, VMs, or existing sandboxes (Lambda, Vercel, E2B, Modal, and others) while Cursor still runs the agent loop in the cloud; register a worker with agent worker start, join personal machines or named team pools, and optionally enable computer use on Linux and Mac. Pools scale with queue depth, hibernate idle capacity, and are not tied to a single repo. This is the path for teams that cannot put source or internal APIs on Cursor-hosted VMs.
Practical Impact Analysis
Astra is not a drop-in "smarter GPT-5.6." It is priced like Fable 5.1, optimized for finished artifacts and computer use, and gated on cyber. Budget owners should assume higher per-token rates than Sol-class models and test whether fewer output tokens actually lower cost per completed workflow. Codex and Responses API users get async tool calling: the model can keep reasoning while your app finishes a slow tool, which changes how you write wait/retry loops. Do not enable it on unvetted internet-facing agents until you have read the system card.
LangChain's MCP promotion is the quiet breaking change. Anyone still on langchain-mcp-adapters should treat 1.4 as a migration, not a patch: extra install, new import path, elicitation on by default as interrupts. The payoff is one client for local stdio servers and remote HTTP, plus cacheable tool catalogs so every agent turn does not re-list 80 tools. Pair it with whatever frontier model you actually have keys for (Astra, Fable, or Gemini 3.8 Flash) without a second adapter layer.
Copilot's dual changelog is an ops ticket. Gemini 3.8 Flash is the immediate upgrade for terminal-heavy and agent-mode work; the October 2 deprecations are not optional. Business and Enterprise admins who froze model policy will silently lose Opus 4.7 and the older Flash IDs. Map each team's default model this week, enable 3.8 Flash, and pick Kimi K3 or Claude Opus 5 where those were the workhorses.
Cursor's self-hosted workers invert the usual SaaS trust model: Cursor still sees prompts and traces; your machines see the checkout and the network. That is the right trade for air-gapped build farms and GPU boxes, but it also means you now own worker patching, pool capacity, and computer-use desktop images. If you already run agents on Vercel or E2B sandboxes, you can point Cursor at them instead of standing up new VMs.
Together: swap Copilot models first (calendar-driven), upgrade LangChain MCP second (API-driven), trial Astra on a computer-use spike third, and only then decide whether Cursor workers belong in the compliance diagram.
Tutorial
Upgrade a LangChain agent from the old MCP adapters package to first-class langchain.mcp, then run a tool-using turn. This matches today's 1.4.x surface: FastMCP under the hood, one adapter, elicitation ready as interrupts.
- Uninstall the standalone package and install the extra:
pip uninstall langchain-mcp-adaptersthenpip install "langchain[mcp]". - Point
MCPAdapterat a server URL, stdio script, or in-process FastMCP instance. list_tools()inside the async context; pass those tools tocreate_agent.- Invoke as usual. If a server elicits mid-call, the run pauses on a LangGraph interrupt. Resume with
Command(resume={"responses": {...}})the same way you already handle HITL.
import asyncio
from langchain.agents import create_agent
from langchain.mcp import MCPAdapter
async def main() -> None:
# URL, stdio path, or FastMCP instance all work; transport is inferred.
async with MCPAdapter("https://example.com/mcp") as adapter:
tools = await adapter.list_tools()
agent = create_agent("claude-sonnet-5", tools)
result = await agent.ainvoke(
{
"messages": [
{
"role": "user",
"content": "List the tools you have and run a read-only one if it is safe.",
}
]
}
)
print(result)
if __name__ == "__main__":
asyncio.run(main())
Swap the model string for whatever you actually run (gpt-6-astra once your org is enabled, Gemini 3.8 Flash via your provider, etc.). Keep elicitation armed unless you pass a prebuilt client that already owns the handler.
Recommended AI prompt
Copy this paragraph into ChatGPT, Claude, Gemini, Grok, or whatever you use.
The last 48 hours stacked GPT-6 Astra's computer-use launch, LangChain promoting MCP into langchain.mcp with interrupt-based elicitation, Copilot adding Gemini 3.8 Flash while retiring four models on October 2, and Cursor letting cloud agents execute on self-hosted pools. Design a two-week migration for a team that uses Copilot in VS Code, LangGraph in production, and has a data-residency constraint: who should move to Gemini 3.8 Flash immediately versus wait for Astra in Codex, how to replace langchain-mcp-adapters without breaking HITL elicitation, and what actually changes in the threat model when Cursor workers own the checkout instead of Cursor-hosted VMs.
Recommended AI prompt
Explore each Top Story in Grok. Links open in a new tab. On phones, the same link may open the Grok app if you have it installed (via your device's normal link handling).
Article: GPT-6 Astra, LangChain MCP, Copilot, and Cursor Reset the Agent Stack
- OpenAI starts rolling out GPT-6 Astra for computer use, coding, and long-horizon work
- LangChain moves MCP into the main package with MCPAdapter and elicitation interrupts
- GitHub Copilot ships Gemini 3.8 Flash and will retire four models on October 2
- Cursor launches self-hosted machines so agents execute tools inside your network
Privacy: links open grok.com in your session only. AIDevPulse does not run your prompts through our API.