Agent Shortlist

Coding Agent

Cursor

The AI-first IDE that 360k developers pay for

4.0 / 5DeveloperHobby (free): 2k completions/month, 50 slow requests/month

Our verdict

The most-used AI coding IDE in 2026 — $2B annualised revenue, 360k paying users. Multi-model flexibility (Claude, GPT, Gemini in one session) is a real edge. Tab completion is best-in-class. The June 2025 pricing change burned early adopters and trust hasn't fully recovered; for cost-sensitive builders, Cline at BYOK with Claude Sonnet often comes out cheaper for the same workflow.

Best for

Builders who want an IDE-first AI experience and the ability to switch between Claude, GPT, and Gemini mid-session. Strong for rapid prototyping, exploration of unfamiliar codebases, and active development sessions where short feedback loops matter more than autonomous agentic work.

Not for

Teams committed to JetBrains, Vim, or any non-VS Code editor. Anyone who wants CLI-first or terminal-first agentic workflows (Claude Code or Aider fit better). Operators sensitive to SaaS pricing changes — the June 2025 pivot is a real signal. High-volume daily users for whom direct API costs would be cheaper than Cursor's credit pool.

Overview

Cursor is a VS Code fork with AI baked into the editor — not as a sidebar, but as a first-class layer that drives completions, refactors, codebase chat, and an agent mode that can run multi-file edits autonomously. It's the most-used AI coding tool by paying customer count in 2026, with 360,000+ paying users and $2B in annualised revenue. The user base alone is a real signal — when a category of tool gets to that scale, it's because the product works for the bulk of the addressable market.

The headline differentiator is multi-model selection. Claude Sonnet 4.6, GPT-5 family, Gemini 2.5 Pro and Flash, plus a handful of cheaper alternatives are all available — and you can switch between them mid-session for the same task. Try Claude for a complex refactor; if it doesn't get it right, switch to GPT-5 and see if it handles the architecture differently. No other dominant coding tool in 2026 supports this without environment-switching. Claude Code only runs Anthropic; OpenAI Codex only runs GPT; the open-source CLI tools (Aider, Cline) support multi-model but lack the IDE integration.

Pricing is the part most builders need to understand before subscribing. The Hobby tier is free with 2,000 completions and 50 slow requests per month — usable for casual experimentation, not for serious daily work. Pro at $20/month is the tier most builders settle on; the headline is unlimited completions plus a credit pool for agent and chat usage. Pro+ at $60/month and Ultra at $200/month give you bigger pools. Teams is $40/user/month with admin features and shared billing. The complication: in June 2025, Cursor replaced fixed fast-request quotas with a $20 credit pool, which effectively cut monthly fast requests by roughly 55% for most users. The change wasn't announced clearly; existing Pro subscribers found their monthly capacity quietly shrunk. Trust dented — and older reviews predating the change overstate what $20 buys today.

What it's actually like to use, day to day: Tab completion is genuinely best-in-class. The AI suggests not just the next line but the next several edits across multiple files, and you accept-or-reject with one keystroke. `Cmd+K` for in-line edits is the fastest way to make a targeted change that exists in any coding tool we've tested. The chat sidebar is competent — codebase-aware questions get accurate answers because Cursor indexes your repo. Agent mode is the part where opinions split: for short tasks (rename a function and update call sites, add a route, write a test), agent mode works well. For longer agentic loops on real codebases, Claude Code is more reliable in our testing — Cursor's agent mode occasionally makes large unreviewable multi-file edits that are hard to roll back. Pair with branch-and-commit-first discipline.

Which model to pick on Cursor depends on the task. Claude Sonnet 4.6 is our default for everything code-shaped — best reasoning per dollar in the lineup. GPT-5 is the right swap when Claude struggles on architectural decisions or unfamiliar frameworks. Gemini 2.5 Pro is the right swap for very long-context tasks (multi-file refactors across large codebases) where Cursor's context window matters. The cheaper models (Claude Haiku, GPT-5 Mini, Gemini Flash) are competent for completions but we wouldn't run agent mode on them for production work. The model selector is in the bottom-right of the chat panel — most builders set it once and forget it; the value compounds when you actually swap based on task shape.

Where Cursor is the wrong pick: if you're on JetBrains, Vim, or any non-VS Code editor, Cursor requires you to switch IDEs — usually not worth it for what you gain. If your workflow is CLI-first or terminal-native, Aider and Claude Code give you the same model access without the IDE. If you're a high-volume user where direct Claude API costs would be cheaper than Cursor Pro's effective rate, switching to Cline (BYOK, open-source, same Claude API) often wins on economics. And if SaaS pricing volatility is something you can't live with, the June 2025 pricing change is a real warning sign that should factor into the choice.

What works

  • +Multi-model — switch between Claude, GPT, and Gemini in the same session (genuinely unique in the category)
  • +Tab completion is best-in-class — predicts multi-file edits, not just next-line
  • +Familiar VS Code experience reduces onboarding friction to near-zero
  • +Largest paying customer base on this list (360k), validates product-market fit
  • +Active product development — agent mode, model selector, and codebase chat ship updates weekly
  • +Codebase-aware semantic search beats raw grep for navigating unfamiliar repos
  • +Cmd+K in-line edit is the fastest targeted-change interaction in any coding tool

What doesn't

  • VS Code lock-in — no JetBrains, no Vim, no terminal-first workflows
  • June 2025 pricing pivot cut effective fast requests ~55% without clear notice
  • Agent mode can make large unreviewable multi-file edits — needs branch-and-commit discipline
  • Performance lag on very large projects vs vanilla VS Code (and vs Augment Code at the enterprise-codebase end)
  • Opaque usage meter — hard to track credit consumption against the $20 pool in real time
  • For high-volume daily users, direct Claude API via Cline often comes out cheaper than the Cursor subscription

What operators use it for

01

Rapid Prototyping and MVPs

Cursor is the fastest tool on this list for exploration. Open a blank project, describe what you want to build, and the IDE drives the AI through inline suggestions and multi-file edits. Builders shipping MVPs report 5–10× faster time to first working prototype vs working in plain VS Code with autocomplete.

02

Multi-Model Comparison Mid-Session

Try Claude Sonnet 4.6 for a complex refactor. Switch to GPT-5 for a function it might handle differently. Drop down to Gemini 2.0 for a long-context task. Same conversation, three models. No other coding tool lets you do this without switching environments.

03

In-Line Edits While You Type

Cursor's bread and butter: AI completions that are aware of your whole codebase, not just the current file. Type the start of a function and Cursor predicts what you want to write based on patterns from across your project.

04

Multi-File Edits with Diff Review

Describe a refactor — 'rename this function and update all 23 call sites' — and Cursor stages the changes across files with a diff review before commit. Better safety than blind agent execution; faster than doing it manually.

05

Codebase Search Beyond Grep

Ask 'where do we handle authentication?' and Cursor runs a semantic search instead of a literal one. Useful when you don't know the exact function name but you know what the code does.

06

Onboarding to a New Codebase

Open an unfamiliar repo, ask Cursor to explain what each module does, trace how a request flows through the system. The IDE context (file tree, dependencies, imports) makes the explanations more accurate than chat-only tools.

Pricing

Hobby (free): 2k completions/month, 50 slow requests/month. Pro $20/month — the most common tier. Pro+ $60/month. Ultra $200/month. Teams $40/user/month with usage scaling. June 2025 pricing pivot replaced fixed fast-request quotas with a $20 credit pool, cutting effective monthly fast requests by ~55%.

Common questions about Cursor

What is Cursor AI?

Cursor is an AI-first code editor — a forked VS Code with deeply integrated AI assistance for inline edits, multi-file refactors, codebase chat, and an agent mode. It's the most-used AI coding tool by paying customers in 2026, with 360k+ paid users and $2B in annualised revenue.

How much does Cursor cost?

Hobby is free with limited completions. Pro is $20/month — the most common tier. Pro+ is $60/month, Ultra is $200/month, and Teams is $40/user/month with usage scaling. A June 2025 pricing change reduced effective fast requests by roughly 55%, so older reviews understate current costs.

Cursor vs Claude Code?

Cursor wins for IDE-first work — rapid prototyping, small targeted edits, codebase exploration. Claude Code wins for agentic loops — multi-file refactors, test-driven builds, long-running tasks. Most serious builders run both: Cursor for active development sessions, Claude Code for delegated work. Full comparison in our Claude Code vs Cursor article.

Cursor vs Windsurf?

Two IDE-first coding agents on similar shapes (both VS Code forks). Cursor has more users and faster product velocity. Windsurf has a tighter UX in places and is now owned by OpenAI (acquired mid-2024), so expect deeper OpenAI model integration over time. For most builders, Cursor remains the default; Windsurf is the credible alternative.

What models does Cursor support?

Cursor supports Claude (Opus 4.7, Sonnet 4.6, Haiku 4.5), GPT-5 family (5.5, 5.4, mini), Gemini 2.5 Pro and Flash, plus a handful of cheaper open-source models — all switchable mid-session via the model selector in the bottom-right of the chat panel. The multi-model flexibility is one of its strongest features for builders who benchmark across models.

What's the best model to use in Cursor?

For most builders: Claude Sonnet 4.6 as the default — best reasoning per dollar across the lineup. Switch to GPT-5 when Claude struggles on architecture decisions or unfamiliar frameworks. Use Gemini 2.5 Pro for very long-context tasks (multi-file refactors across large codebases) where you need the 2M context window. The cheaper models (Claude Haiku, GPT-5 mini, Gemini Flash) work well for tab completions but we wouldn't trust them with agent mode on production code.

Is Cursor worth it in 2026?

For most builders writing code daily, yes — at $20/month, Cursor Pro pays for itself in a week of saved time. The multi-model flexibility and best-in-class tab completion are real differentiators. The caveat: if you're a high-volume daily user, switching to Cline (free, open-source, BYOK with your own Claude API key) often comes out cheaper on a per-API-call basis. And if you're on JetBrains or want CLI workflows, Cursor isn't the right shape regardless of price.

Does Cursor use Anthropic Claude?

Yes — Anthropic's Claude (Opus 4.7, Sonnet 4.6, and Haiku 4.5) is one of the model options available in Cursor's mid-session model selector. Cursor isn't built by Anthropic and isn't tied to one provider — it routes requests to whichever model you've selected. For most code-shaped tasks, Claude Sonnet 4.6 is the default we'd recommend.

Cursor reviews — what are users actually saying in 2026?

The 360k paying-user count speaks for itself — Cursor is the most-used AI coding tool by paid customers. User feedback in 2026 is split roughly two ways: builders who got Pro before June 2025 and feel the pricing change degraded the product, vs newer users who have no comparison and find the $20 tier excellent value. Both are correct. Our 4/5 rating reflects the product is strong; the pricing-change handling cost it points on operational trust.

Open dataset. This review is part of a structured dataset of every platform on the shortlist, published as platforms.json on GitHub under CC-BY-4.0.