โ† Back to blogยทTrendsยท6 min read

Claude's Growth Curve Bent Upward, China Trained a Frontier Model Without Nvidia, and an MCP Bridge Was Wide Open to Anyone

Anthropic posted the fastest growth of any major chatbot this quarter, Meituan open-sourced a 1.6-trillion-parameter coding model trained entirely on domestic chips, and a maximum-severity flaw let anyone hijack a popular open-source agent platform with one unauthenticated request. Three signals worth checking against your own stack.

By Maya Brennan ยท Writer, Smillee AI
July 31, 2026

Three stories from the past week say less about any single model's IQ and more about how the ground is shifting under anyone building on top of these systems: who's winning the traffic, who can train a frontier model at all, and how exposed the tools your agents call really are. Here's what happened, and what's worth checking against your own stack.

1. Claude Is Growing Faster Than Anyone Else in the Room

New market-share data for July 2026 puts ChatGPT still comfortably in the lead at 53.9% of worldwide web visits across the major generative AI chatbots, with Google Gemini at 27.9% and Anthropic's Claude at 9.2%. The number that stands out isn't the share, though โ€” it's the slope. Claude grew roughly 855% year over year and 228% quarter over quarter, the fastest growth of any chatbot in the set, driven in large part by Claude Sonnet 5 pulling agentic coding and day-to-day workflow automation into ordinary business use rather than staying a developer-only tool.

For teams that picked a default model provider eighteen months ago and haven't revisited it, this is a data point worth sitting with. A 9% share with triple-digit quarterly growth changes the calculus on multi-model support faster than a static market snapshot suggests.

// Worth re-running this quarterly, not just once at launch time
const modelRouting = {
  primary: 'gpt-5.5-instant-2026-06-01',
  fallback: null,          // single-provider bet made 18 months ago
  lastReviewed: '2025-02-01',
};
// A provider growing 228% quarter over quarter is a reason to
// re-price a fallback path, not just watch the leaderboard.

If your chatbot or agent stack hardcodes one provider with no fallback, this quarter's numbers are a reasonable trigger to re-run your evals against a second model and price out what a real fallback path would cost.

2. The Trillion-Parameter Frontier No Longer Needs Nvidia

Meituan open-sourced LongCat-2.0 this week: a 1.6-trillion-parameter mixture-of-experts model with roughly 48 billion active parameters per token, a native 1-million-token context window, and โ€” the detail that matters most โ€” the first trillion-parameter model trained and served entirely on domestic Chinese accelerators, with no Nvidia hardware anywhere in the stack. Released under an MIT license, it's built specifically for agentic coding: repository-level edits, long-horizon tool-calling workflows, and integration with agent runtimes like Claude Code. On the vendor's own numbers it scores 59.5 on SWE-bench Pro, edging past GPT-5.5's 58.6, and its Flash-Thinking variant hits open-source state-of-the-art on VitaBench 2.0, a new benchmark built specifically to score multi-domain tool-calling agents rather than single-turn chat.

Meituan paired the release with research from its Agentic System X team analyzing 3,607 user-reported AI agent incidents collected between early 2025 and mid-2026 โ€” a rare public dataset on how agents actually fail in the wild, not just how they score on a benchmark.

// The open-weight frontier now clears a bar most teams didn't expect this soon
const openWeightOptions2026 = {
  license: 'MIT',
  params: '1.6T (48B active, MoE)',
  context: '1_000_000',
  trainedOn: 'domestic-accelerators-only', // no Nvidia dependency
  swebenchPro: 59.5, // vs. GPT-5.5's 58.6
};
// A model this capable, this open, changes the cost math for
// self-hosting an agentic coding backend โ€” worth a fresh eval pass.

If your agentic coding or tool-calling pipeline currently assumes a closed, US-hosted frontier model is the only option at this capability tier, LongCat-2.0 and VitaBench 2.0 are worth a benchmark run before you renew that assumption.

3. One Unauthenticated Request, 233 Tools, Full Command Execution

Security researchers at Noma Labs disclosed CVE-2026-59726 โ€” nicknamed "RufRoot" โ€” a maximum-severity (CVSS 10.0) flaw in Ruflo, an open-source AI agent orchestration platform with over 67,000 GitHub stars. Ruflo's MCP Bridge, an Express.js server that routes tool invocations, exposed 233 tools over plain HTTP with no authentication at all: no token, no API key, no header check, no IP allowlist. A single unauthenticated POST request to port 3001 gave an attacker full command execution inside the container, access to stored LLM API keys and user conversations, and the ability to poison the platform's persistent agent memory. The maintainer shipped a fix within 24 hours of disclosure, binding the bridge to loopback and gating execution endpoints behind real access control.

// What RufRoot actually was, reduced to the config line that mattered
const mcpBridge = {
  binding: '0.0.0.0:3001',   // reachable from anywhere, not just localhost
  auth: null,                 // no token, no header check, no allowlist
  toolsExposed: 233,
};
// One unauthenticated POST was enough. If you run an MCP bridge,
// binding and auth are not optional defaults to check later.

If you're running any MCP bridge or tool-execution server โ€” vendored, self-hosted, or hand-rolled โ€” this is the week to confirm it isn't reachable from outside localhost without a credential, regardless of how trusted the network in front of it seems.

What This Means for Builders

None of these three stories is about a benchmark getting a point higher. The market-share numbers say the assumption that one provider stays your default indefinitely is getting more expensive to leave unexamined. LongCat-2.0 says the open-weight frontier is now capable enough, and independent enough of Nvidia supply chains, to be a real production option rather than a curiosity. And RufRoot says the tool-execution layer underneath your agents is exactly the kind of infrastructure that quietly ships without auth until someone checks. Pick whichever one actually touches what you're running, and check it this week rather than at the next incident.

โ€” Maya

Frequently asked questions

How fast is Claude actually growing compared to ChatGPT and Gemini?

As of July 2026, ChatGPT leads worldwide chatbot web traffic at 53.9%, with Google Gemini at 27.9% and Anthropic's Claude at 9.2%, according to market-share tracking from First Page Sage. Claude's share is the smallest of the three, but its growth rate is the fastest in the set โ€” roughly 855% year over year and 228% quarter over quarter โ€” driven substantially by Claude Sonnet 5 pulling agentic coding and business workflow automation into mainstream use rather than staying a niche developer tool.

What makes LongCat-2.0 significant beyond being open-source?

LongCat-2.0, released by Meituan, is a 1.6-trillion-parameter mixture-of-experts model (about 48 billion active parameters per token) with a native 1-million-token context window, released under an MIT license. What sets it apart is that it was trained and is served entirely on domestic Chinese accelerators with no Nvidia hardware in the stack โ€” the first trillion-parameter model to do so. It's tuned specifically for agentic coding, scoring 59.5 on SWE-bench Pro (edging past GPT-5.5's 58.6) and reaching open-source state-of-the-art on VitaBench 2.0, a benchmark built to score multi-domain tool-calling agents.

What was the RufRoot vulnerability and who does it affect?

RufRoot (CVE-2026-59726) is a maximum-severity flaw disclosed by Noma Labs in Ruflo, an open-source AI agent orchestration platform with over 67,000 GitHub stars. Its MCP Bridge component exposed 233 tools over HTTP with no authentication whatsoever, so a single unauthenticated POST request to port 3001 gave an attacker full command execution, access to LLM API keys and stored conversations, and the ability to tamper with the platform's persistent agent memory. Anyone running Ruflo, or any similarly unauthenticated MCP bridge, should confirm the fix (v3.16.3) is applied and that the bridge is not reachable outside localhost without a credential.

Maya Brennan
Writer, Smillee AI

I'm Maya โ€” I write most of what you'll read here. I spent years as a copywriter before I got a little obsessed with what these AI tools can actually do, so now I spend my days poking at chatbots, breaking them, and writing up what's worth your time. Everything here is something I've actually tried. If a prompt didn't work for me, it doesn't make the cut.

Want to try any of this?

Smillee's free and there's no signup โ€” open it and paste in whatever you're working on.

Start chatting โ†’

More from the blog