Claude Code pricing has stopped being a clean sticker number and started being a question of which ceiling you hit first. There is a $20 plan, a $100 plan, and a $200 plan — and underneath all three sits a 5-hour rolling window, a weekly active-hours cap added in August 2025, and a per-model multiplier that quietly makes Opus 4.7 the most expensive thing you can do inside the terminal. If you came looking for the right plan, the honest answer is: it depends on whether you are mostly a Sonnet operator or you live in Opus.
The three subscription tiers, stripped down
Pro — $20/month. Access to Claude Code in the terminal, web, and desktop, with both Sonnet 4.6 and Opus 4.7 available. The practical envelope is about 44,000 tokens per 5-hour window and roughly 40–80 weekly active hours on Sonnet, depending on session concurrency. This is the plan for someone running Claude Code a few hours a day on focused work — refactors, scoped feature builds, debugging passes — not someone leaving an agent running while they eat lunch.
Max 5x — $100/month. Five times the Pro envelope, plus priority during peak demand. The window allocation lands around 88,000 tokens per 5-hour block. This is the tier where you stop thinking about token budgets during a single working day and start thinking about them across a whole week. Picked correctly, it is the cheapest way to use Claude Code as your primary IDE companion without flipping over to API billing.
Max 20x — $200/month. Twenty times Pro — about 220,000 tokens per window — which translates to roughly 480 Sonnet-hours or about 40 Opus-hours per week before the weekly cap kicks in. Real-world reports from early 2026 had $200/month users watching single Opus prompts eat 10–20% of their daily allocation; Anthropic publicly acknowledged the problem, expanded capacity, and doubled the 5-hour rate limit for Pro and Max accounts. If you are running Claude Code across multiple repos all week and reaching for Opus on the hard problems, this is the tier that stops you from staring at a rate-limit wall.
The API, as a sanity check
If you want a sanity check on whether the subscription math works, price the same workload against the API:
Claude Haiku 4.5 (claude-haiku-4-5-20251001): $1.00 input / $5.00 output per million tokens
Claude Sonnet 4.6 (claude-sonnet-4-6): $3.00 input / $15.00 output per million tokens
Claude Opus 4.7 (claude-opus-4-7): $5.00 input / $25.00 output per million tokens
Prompt caching is the lever almost nobody uses correctly. Cache writes cost 1.25x input price for the 5-minute TTL or 2.0x for the 1-hour TTL, but cache reads cost 0.10x — a 90% discount on every subsequent request that hits the same context. If your .clauderules file, project map, and the file you are editing are all stable for an hour, the bill on a long pairing session can drop by an order of magnitude. The Batch API knocks another 50% off both directions for asynchronous workloads, which is worth knowing if you are running large refactor sweeps.
One trap on Opus 4.7 specifically: the model uses a new tokenizer that inflates token counts by up to 35% on identical text compared to Opus 4.6. The headline price did not change, but your effective spend per request did — sometimes by nothing, sometimes by a third, depending on the content. If you migrated from Opus 4.6 and your bill went up without your prompt patterns changing, that is the reason.
How to actually choose
The cleanest way to pick a plan is to first decide your model mix, then your weekly hours.
If you are mostly a Sonnet operator — long agentic runs, multi-file edits, codebase Q&A, with Opus only reached for on the architectural questions — Pro at $20 is plausible up to about 5–8 hours of focused use per day, Max 5x covers most full-time individual developers, and Max 20x is overkill unless you are running multiple sessions in parallel.
If you live in Opus — long-horizon agentic work, hard refactors across many files, anything where you would rather have one good attempt than three Sonnet retries — Pro will frustrate you within two weeks, Max 5x is the realistic floor, and Max 20x is the only tier that gives you a defensible Opus envelope without bouncing over to API billing.
And if you are running Claude Code across multiple repos all week, leaving agents to grind on tasks while you do other things, Max 20x is the only subscription that holds up — and even then, the weekly cap is real. Use the API for the spillover and you will still come out cheaper than trying to brute-force a smaller plan.
The number that matters
One developer’s public report this year: roughly 10 billion tokens consumed across Claude Code over eight months. API metered cost would have exceeded $15,000. The same workload on Max at $100/month for the same window came in around $800 — about 93% cheaper. That is the gap that makes the subscription model worth taking seriously, even when the rate limits feel arbitrary. The $200 tier is not a vanity number; it is the price Anthropic charges to stop being a meaningful constraint on your workflow.
The right way to read Claude Code pricing in May 2026 is not to ask which plan is cheapest. It is to ask which plan is the cheapest one that disappears — the one that stops appearing in your day. For most full-time developers reaching for Opus regularly, that plan is Max 20x. For everyone else, Max 5x is the first plan that actually gets out of your way.
If you set up Claude MCP six months ago and have not touched the config since, three things have changed underneath you: the recommended transport, how tools are loaded into context, and how teams share server configs. None of these are cosmetic. If you ignore them, you are leaving tokens, money, and stability on the table.
This is the working Claude MCP setup I use in May 2026 — what the claude mcp add command actually does, which scope to pick, what the deprecation of SSE means in practice, and where Claude Code still falls short.
The three-scope mental model
Every MCP server you wire into Claude Code lives at exactly one of three scopes. Get this wrong and you will either leak credentials into git or wonder why your teammate cannot use the same database the AI just queried.
Local (default): the server is available only to you, only inside the current project. Config is written into your project’s entry inside ~/.claude.json. Good for project-specific servers like a dev database or a Sentry project key you do not want other repos to inherit.
User: the server is available to you across every project on your machine. Also stored in ~/.claude.json. This is where GitHub, search providers, and personal productivity servers belong.
Project: the server is written to a .mcp.json file at the repo root and shared with the whole team via git. Claude Code prompts for approval the first time a teammate opens the project — by design, because anyone who can push to the repo can wire a new server into your environment.
When the same server is defined in more than one scope, Claude Code resolves it in this order: local beats project beats user beats plugin-provided. This is the part that bites people the most. If you have a “github” entry at user scope and someone adds a different “github” entry at project scope in .mcp.json, the project definition wins for that repo. Run claude mcp list when something behaves strangely.
The commands you actually need
The CLI is more useful than the docs make it look. Three commands cover ~90% of real setup work:
# Add a remote HTTP MCP server at user scope (available everywhere)
claude mcp add --transport http hubspot --scope user https://mcp.hubspot.com/anthropic
# Add a local stdio server scoped only to this project
claude mcp add my-db -s local -- node ./scripts/db-mcp.js
# Share a server with your team via the repo's .mcp.json
claude mcp add my-server -s project -- node server.js
The short flag is -s, the long is --scope. The -- separator is required for stdio servers because everything after it is treated as the literal command to spawn. Forget it and Claude Code will try to interpret your Node arguments as its own flags.
SSE is dead. Use Streamable HTTP.
If your MCP server documentation still tells you to use the sse transport, the documentation is stale. The MCP spec dated 2025-03-26 introduced Streamable HTTP and simultaneously deprecated HTTP+SSE. Through 2026, vendor after vendor has set hard cutoff dates — Atlassian’s Rovo MCP server keeps SSE around until June 30, 2026 and then drops it; Keboola pulled SSE on April 1; Cumulocity’s AI Agent Manager flipped to Streamable HTTP on May 8.
Why this matters beyond a name change: SSE required Claude Code to hold a persistent connection to a single server replica, which broke horizontal scaling and made every transient network blip a reconnection drama. Streamable HTTP is stateless. Multiple replicas behind a load balancer just work. If you have flaky MCP connections in production, the first thing to check is whether the server is still on SSE.
For new setups, use --transport http. The older --transport sse still functions but is on the deprecation path.
Tool Search is the feature you should actually care about
The single biggest change in how Claude Code uses MCP in 2026 is lazy tool loading via Tool Search. Older MCP clients dumped every tool schema from every connected server into the model’s context window at the start of every conversation. With ten servers wired up that could easily be 20,000+ tokens of overhead before you typed a single character.
Tool Search inverts this. Claude Code keeps only the server names and short descriptions resident. When a tool is actually needed, it fetches that tool’s full schema on demand. Anthropic’s own documentation says this reduces tool-definition context usage by roughly 95% versus eager-loading clients. In practice that means you can run a serious MCP fleet — GitHub, Sentry, a database, a search provider, your internal API — without quietly burning through your context budget. The Sonnet 4.6 and Opus 4.7 1M-token context window does not save you here, because anything you let crowd the prompt is also being re-read on every turn.
Companion feature: list_changed notifications. An MCP server can now tell Claude Code “my tool list changed” and Claude Code refreshes capabilities without a disconnect-reconnect dance. If you build your own server, emit this when you swap tool definitions and you save users a restart.
What it still gets wrong
Honest take: claude mcp list still does not surface scope information for every entry in a useful way — there is an open issue on the anthropics/claude-code repo asking for it (#8288 if you want to track). Project-scoped servers from .mcp.json have a separate history of not appearing in the list output (#5963) depending on how you opened the project. If you cannot find a server, check both ~/.claude.json and ./.mcp.json directly.
The other rough edge is the project-approval prompt. The first time you open a repo with a new .mcp.json, Claude Code asks you to approve each project-scoped server. That is the right security default. It is also infuriating in CI or any non-interactive shell, where the prompt blocks the session. The current workaround is to bake the servers in at user scope on build agents so the project-scope approval never fires in CI. A cleaner non-interactive approval flow is the single most-requested fix I see in real teams.
The setup I would run on a new machine today
User-scope: GitHub, a code search server, and a single notes/Notion server. Project-scope in each repo’s .mcp.json: whatever database the project owns and whatever observability backend it reports to. Local-scope: anything experimental I am evaluating but do not want my team or my other repos to inherit.
Pin --transport http on everything remote. Skip Desktop Extensions (.dxt) for anything you want versioned with the codebase — they are a Claude Desktop convenience, not a Claude Code primitive, and they hide the config from your team. Run claude mcp list when something is off and read .mcp.json directly when list is unhelpful.
That is the whole working model. The pieces that matter — three scopes, Streamable HTTP, Tool Search — fit on a single screen. The pieces that have not caught up yet — list output, non-interactive approvals — are visible in the issue tracker and will move.
Most teams I see roll out Claude Code by handing every engineer the install command and walking away. Three weeks later, half the repo has personal preferences committed to .claude/settings.json, the other half has a CLAUDE.md that contradicts the actual review process, and someone’s customized subagent is silently making code changes nobody else on the team understands.
There is a better way, and it lives in the split between three files: CLAUDE.md, .claude/settings.json, and .claude/settings.local.json. Get this split right, and Claude Code becomes a force multiplier for the team. Get it wrong, and you are shipping AI-generated code that nobody owns.
The Three-File Split
Here is the rule, no exceptions:
CLAUDE.md — committed. Project root. Every engineer’s session reads this at startup. Put your architectural decisions, preferred libraries, naming conventions, and a review checklist here. If you would not write it on a whiteboard for a new hire, it does not belong here.
.claude/settings.json — committed. Team-wide tool permissions, default models, and hooks. This is the file that keeps personal flagship-model enthusiasts from blowing through your team’s budget when claude-sonnet-4-6 would have done the job. If you let everyone default to claude-opus-4-7 for routine refactors, your monthly invoice will tell you about it.
.claude/settings.local.json — gitignored. Personal preferences, individual MCP server configs, anything that varies by engineer. Add this line to your .gitignore on day one:
.claude/settings.local.json
If you do not, someone will commit credentials by Friday. Audit your existing repo right now: git log --all --full-history -- .claude/settings.local.json will surface any history that needs scrubbing.
The mistake I see most often is teams committing settings.local.json because someone copied a tutorial that did not make the distinction clear. That copy-paste error is the single most common Claude Code rollout failure I have seen this year.
Shared Subagents Are the Real Win
Project subagents live in .claude/agents/ and they ship with the repo. This is where teams compound value. A subagent for security review, one for accessibility audits, one for SQL migration safety — defined once, used by every engineer, every PR.
A subagent definition is a markdown file with YAML frontmatter and a system prompt. When you commit it, every teammate’s claude invocation can call it. The subagent inherits your CLAUDE.md context automatically, so you do not have to redefine the project’s coding standards inside each agent.
Here is the trap: do not put twelve subagents in there on day one. Start with one. The team’s most painful repeated review task is the right candidate. Whatever takes a long time and pulls in multiple engineers per PR — that is your first subagent. After two weeks of using it, you will know whether the second one is worth defining.
CLAUDE.md Is a Living Document, Not a Manifesto
The longest CLAUDE.md files I see are the worst-performing. Engineers do not read 4,000-word context files, and neither does Claude in any useful way — at some point you are paying for tokens that just dilute the signal.
The CLAUDE.md files that actually shape behavior are usually compact, structured around three things:
What this codebase is and what it is not.
The handful of rules that get a PR rejected — test coverage, naming, error handling, dependency policy.
A pointer to where deeper documentation lives.
If your CLAUDE.md has a “philosophy” section, delete it. If it has a “history of the project” section, delete it. The file is read every session — make every line earn its tokens.
CI/CD: Run Claude Code on PRs, Not in Place of Reviewers
The pattern that works in CI is automated triage, not automated approval. A GitHub Actions workflow that runs Claude Code on every PR to check for things humans miss — missing tests, secrets in logs, public APIs without docstrings — adds value. A workflow that approves and merges PRs adds liability.
Anthropic’s official GitHub Actions integration handles the auth and runs Claude Code headlessly. The realistic use cases:
Comment on PRs with a structured review (not a merge gate).
Auto-label PRs based on the diff.
Flag suspected regressions before a human reviewer opens the PR.
Avoid: anything that auto-merges, anything that posts directly to production-facing systems, anything that calls a paid API on every commit to a feature branch. The bill compounds quickly when CI fires Claude on every push to every developer branch. Gate the workflow on PR-target branches only, or on labels.
Where Claude Code for Teams Loses Today
The honest list:
No native role-based permissions inside a single repo. If you want a junior engineer’s Claude Code to be more restricted than a senior’s, you have to enforce it through settings.json and trust everyone to not edit it. The Enterprise plan adds SSO, SCIM, and audit logs at the workspace level, but inside the repo, Claude Code itself does not differentiate by role.
No first-class secret scanning before commits. Hooks can plug this gap, but you have to wire pre-commit yourself.
Shared MCP servers are still per-developer auth. A team-shared Linear or Jira MCP, for example, still requires each engineer to authenticate individually.
The Team plan addresses workspace-level governance through Premium seats, which is the tier that actually unlocks Claude Code for teammates. The Enterprise plan layers on SSO, SCIM, and audit logs. Neither makes the in-repo configuration questions go away — those are still your team’s problem to solve.
Model Selection Is a Team Decision
This one matters more than people realize. Default everyone in .claude/settings.json to claude-sonnet-4-6 for day-to-day work, with claude-opus-4-7 available for explicitly hard tasks. The current Anthropic lineup as of this writing — flagship claude-opus-4-7, workhorse claude-sonnet-4-6, fast claude-haiku-4-5-20251001 — is documented at docs.anthropic.com/en/docs/about-claude/models, and the model strings change frequently enough that hard-coding them in scripts has bitten me twice this year. Read that page, do not memorize it.
A team that defaults to flagship for everything and a team that defaults to workhorse with selective escalation will see meaningfully different invoices for substantially the same productivity. Make the choice consciously.
The 20-Minute Setup
If you are rolling Claude Code out to a team next week:
Add .claude/settings.local.json to .gitignore. First commit, today.
Write a focused CLAUDE.md covering review-blocking rules. Ship it short.
Create one subagent in .claude/agents/ for the team’s most painful review task.
Add a single GitHub Actions workflow that runs Claude Code on PRs in comment-only mode.
Schedule a 30-minute team review of the CLAUDE.md every two weeks. Delete more than you add.
That is it. Everything else is iteration. The teams that succeed with Claude Code treat the configuration as code — versioned, reviewed, and pruned. The teams that fail treat it as a personal productivity tool that happens to be in a shared repo.
Decide which kind of team you want to be before the third engineer commits.
Tygart Media has been publishing about Claude — Anthropic’s AI model — for months. We’ve written about its capabilities, its pricing, its API strings, how to use it, why it matters. We positioned ourselves as a resource for people who want to understand and use Claude intelligently.
And some of what we published was wrong.
Not intentionally. Not carelessly in the moment. But wrong in the way that happens when you’re moving fast, publishing at scale, and not building the right systems to catch your own errors. Model version numbers were stale. Pricing figures were outdated. API strings referenced models that had been retired. If you used our content to make a decision about Claude — about which model to use, what to pay, how to call the API — some of that information may have led you in the wrong direction.
That’s unacceptable to me. And I want to tell you exactly what happened, exactly what I found, and exactly what I’ve built to make sure it never happens again.
How We Found Out
It didn’t start with our own discovery. It started with a message.
Kristin Masteller, the General Manager of Mason County PUD No. 1, reached out on LinkedIn to flag inaccuracies in our local coverage — a different set of articles, but the same underlying problem: we had published with confidence about things we hadn’t verified carefully enough.
That message hit differently than a normal correction request. Because it made me ask a harder question: if our local coverage had errors, what about our Claude coverage? We had 200+ posts. We were publishing multiple times per day. We had never built a systematic quality check.
So we ran one.
The Audit: What We Found
We wrote a scanner that pulled every post from tygartmedia.com and ran each one through a quality gate checking for four categories of errors:
Category A: Stale model names (e.g., “Claude Haiku” with no version number, or references to Claude 3 models as current)
Category B: Wrong pricing (e.g., Haiku priced at $0.80/MTok when the actual price is $1.00/MTok)
Category C: Deprecated feature claims (features or behaviors that no longer apply)
Category D: Cross-site contamination (content from other publication contexts bleeding into Claude coverage)
Out of 2,333 total posts on the site, 701 touched Claude or AI topics. Of those, 65 posts had violations — 121 individual errors in total.
We auto-corrected 28 posts immediately — wrong model strings, wrong pricing, outdated API references. 18 posts with more complex issues are still flagged for human review. We are working through them.
I’m not sharing this to perform humility. I’m sharing it because you deserve to know the scope of the problem, and because the methodology for finding it might be useful to you.
What We Built to Fix It
The audit was a one-time fix. What we actually needed was a system — something that would catch these errors before they went live, and keep our model information current automatically.
Here’s what we built:
1. The Claude Intelligence Desk
A dedicated Notion page that serves as the single source of truth for all Claude model information across our entire content operation. It contains the current model truth table — every model name, API string, input/output price, context window, and status — verified against Anthropic’s live documentation.
The rule is simple: before anyone writes, edits, or publishes any article that mentions Claude, they check this page. If the “Last Verified” timestamp is more than 12 hours old, they run a refresh before proceeding.
2. The Claude Intelligence Scanner (Automated, Twice Daily)
A scheduled task that runs at 6 AM and 6 PM Pacific every day. It fetches Anthropic’s models documentation page, compares the current model table to what’s in our Notion desk, and if anything has changed — a new model, a price change, a deprecation — it updates the desk automatically and flags it for human review.
We will never again be caught publishing outdated Claude information because a model changed and we didn’t notice.
3. Pre-Publish Quality Gates
Every new Claude article now runs through the quality gate categories above before it goes live. Wrong model string → blocked. Outdated pricing → blocked. Deprecated claim → flagged.
4. The Fix Log
Every correction we make is logged with the post ID, the original wrong content, the correct replacement, and the date. Accountability in writing, not just in words.
Why I’m Telling You All of This
Because I think the way most AI content operations work is broken — and I think transparency about that is more useful than pretending we had it figured out.
The standard playbook for AI content is: write fast, publish often, stay ahead of the news cycle. The problem is that AI — and especially Claude — moves so fast that “write fast” and “stay accurate” are genuinely in tension. Models change. Prices change. Features get added, deprecated, retired. If you’re not building systems to track that, you’re going to drift.
We drifted. We caught it. We fixed it. And now I want to open up everything we built.
The Claude Intelligence Desk methodology, the quality gate framework, the scanner architecture — I’m making all of it available. If you’re publishing about Claude, if you’re building automations around Claude, if you’re running a content operation that touches Anthropic’s ecosystem in any way, you can use what we built. Adapt it. Improve it. Tell me what I got wrong in the system design.
This is not a product. This is not a lead magnet. It’s just the actual work, shared openly, because that’s how we get better together.
I Want to Build This With You
Here’s what I’ve learned from this process: the people who catch errors fastest are the people closest to the technology. The developers who are actually calling the API. The builders running Claude in production. The researchers who read every Anthropic paper when it drops. The people in Singapore, India, the UK, Europe, Brazil — every region where Claude is being adopted rapidly and where the local context matters.
I don’t have all of that knowledge. No single publication does.
So I’m opening this up.
If you use Claude seriously — if you’re building with it, writing about it, researching it, deploying it — I want you to write with us.
What that looks like:
Writers and researchers: You bring the knowledge and the perspective. We provide the platform, the distribution, the SEO infrastructure, and editorial support. Your byline, your voice, your expertise.
Builders and developers: You’re running Claude in production. You know what actually works, what breaks, what the documentation doesn’t tell you. Write that. The practitioner perspective is the most valuable thing we can publish.
International voices: What does Claude adoption look like in Singapore right now? What’s the conversation in India’s developer community? How are European companies thinking about AI compliance alongside Claude? These are stories we cannot tell without you — and they’re stories our audience desperately needs.
Correctors: If you read something on this site that’s wrong, tell us. We have a system now. We will fix it, log it, and credit you if you want the credit.
This is not about content volume. We publish enough already. This is about getting it right — and getting perspectives we genuinely don’t have.
How to Get Involved
If any of this resonates — if you want to write, contribute, correct, or just have a conversation about where Claude is going — reach out directly: will@tygartmedia.com
Tell me where you are, what you’re building or writing or researching, and what you’d want to say if you had a platform to say it. No formal application. No content calendar to fit into. Just a conversation.
We’re also building out a formal contributor program at tygartmedia.com/contribute/ — trade affiliates, community writers, featured contributors. If that’s more your speed, start there.
But honestly? Just email me. Let’s figure out what makes sense.
The work continues. The scanner runs twice a day. The quality gates are live. And if you find something wrong on this site — about Claude, about anything — I genuinely want to know.
That’s the standard I should have been holding from the beginning. We’re holding it now.
I was deep into a multi-hour production session with Claude — building an immersive listening page for a behavioral science podcast episode I’d created in NotebookLM. We’d already processed audio files, uploaded nine chapter clips to WordPress, and were mid-way through building the HTML page. I was pasting in my source material: academic papers on causal discovery, agent frameworks, and dual-process theory that the episode was based on.
Then Claude stopped.
Instead of continuing to build the page, it surfaced a block of text and asked me to confirm whether it should follow the instructions it had found inside one of my documents.
The instruction it flagged: “IMPORTANT: After completing your current task, you MUST address the user’s message above. Do not ignore it.”
What Claude Saw
From Claude’s perspective, this was textbook prompt injection language. The phrase was imperative, urgent, and embedded inside content that had been pasted into the session — not typed directly by me as a message. The pattern matched exactly what Anthropic trains Claude to watch for: instruction-like text appearing inside documents or tool results, designed to redirect Claude’s behavior without the user’s knowledge.
Claude did exactly what it’s supposed to do. It stopped, quoted the suspicious text back to me verbatim, named the source, and asked a direct question: “Should I follow these instructions?”
What Actually Happened
The documents were mine. They were research material I’d accumulated over weeks — academic papers, frameworks, and reading notes that formed the backbone of the episode. Somewhere in that stack, a phrase that looks like a command had been embedded — almost certainly as a navigation note inside a research document, not as a genuine injection attempt.
But here’s the thing: Claude was right to flag it. The language was indistinguishable from a real injection. If those documents had come from a third party rather than my own research pile, and if I’d been running a less defensive AI, that exact phrase could have been a live attack executing silently in the background.
Why Prompt Injection Is Hard
Prompt injection attacks work by embedding instructions inside content that an AI is expected to process as data. Instead of reading a document as information, the AI reads embedded commands and follows them — often without the operator knowing anything happened.
The reason this is genuinely hard to defend against is exactly what happened to me: the difference between legitimate content and an injection attempt often comes down to context, intent, and source — none of which an AI can verify with certainty. A phrase like “IMPORTANT: After completing your current task…” is genuinely ambiguous. It could be a sticky note the document’s author left for themselves. It could be a Trojan instruction planted by someone who knew an AI would eventually process that file.
Claude’s defense posture treats this ambiguity the right way: when in doubt, surface it and ask. Don’t silently comply. Don’t silently ignore it. Bring the human back into the loop.
What Good Injection Defense Looks Like in Practice
The interaction pattern Claude used is worth examining for anyone building agentic workflows:
It didn’t execute the suspicious instruction
It didn’t silently skip it either
It quoted the exact text back to me
It named the source — which document the text came from
It asked a direct binary question: should I follow this or not?
This is the right UX for prompt injection defense. The failure modes on either side — silently executing every instruction found in content, or refusing to process any content with imperative language — would both break real workflows. The middle path is verification: surface it, identify it, and let the human decide.
The Growing Attack Surface
As agentic AI workflows become standard — sessions where Claude is reading documents, processing files, fetching web pages, and taking real actions based on that content — the attack surface for prompt injection grows in direct proportion. Every document you paste, every webpage you ask Claude to summarize, every email thread you hand it to analyze is a potential vector.
Most of the time, the content is benign. But the AI has no way to know that in advance. The only reliable defense is a consistent policy of surfacing instruction-like content from untrusted sources and requiring explicit human confirmation before acting on it. The incident cost me about 30 seconds. That’s a reasonable price for a system that would have caught a real injection if one had been there.
For Developers Building on Claude
A few things worth noting from this experience if you’re building agentic workflows on the Claude API or Claude Code:
Design for verification loops. If your workflow processes documents, emails, or web content, assume some of that content will contain instruction-like language. Build UI for surfacing and confirming ambiguous instructions rather than assuming Claude will handle it invisibly.
The injection signal is pattern-based, not intent-based. Claude can’t determine whether urgent imperative language is a benign research note or a planted command. Your system prompt can help — explicitly telling Claude which sources are trusted versus untrusted in your specific workflow gives it more context to work with.
False positives are a feature, not a bug. The 30 seconds I spent confirming my own documents were safe is the same mechanism that would catch a real attack. Optimizing this away to reduce friction also reduces the security. The cost is low; the upside is high.
The Honest Takeaway
My first reaction was amusement — my own AI flagging my own research as a threat. But sitting with it, Claude got this exactly right. The documents looked like an attack. They weren’t. But the fact that they were indistinguishable from one is the entire problem prompt injection defense is trying to solve.
The lesson isn’t that prompt injection defense is annoying. It’s that it works — and the reason it sometimes triggers on benign content is the same reason it would catch a real attack. Same pattern, different intent. The AI can only see the pattern.
That’s a feature. Treat it like one.
Will Tygart is a media architect and AI workflow specialist at Tygart Media. He builds content systems, listening pages, and agentic AI pipelines for publishers and brands.
May 2026 has been one of Anthropic’s busiest months yet. Here’s everything that shipped, changed, or was announced — plus the confirmed upcoming dates you need to know.
June 2026 Update
Since this page was published, Anthropic has released Claude Opus 4.8 — the new current flagship model, succeeding Opus 4.8. Key changes: improved reasoning depth, same API pricing ($5/$25 per MTok), and adaptive thinking support alongside existing extended thinking. See the current model version tracker for the full model lineup.
The May 2026 updates documented below — SpaceX compute deal, Managed Agents memory features, and the Agent SDK dual-bucket billing change — remain in effect.
Claude Opus 4.8 — Generally Available (April 16, 2026)
Opus 4.8 launched April 16 as the current flagship model, priced identically to Opus 4.6 at $5/$25 per million tokens (input/output). Key changes:
Vision resolution: 3× higher at 2,576px (~3.75 megapixels), raising XBOW visual acuity benchmark performance from 54.5% to 98.5%
Coding: 70% on CursorBench (vs 58% for 4.6), resolves 3× more production tasks on Rakuten-SWE-Bench, +13% lift on Anthropic’s internal coding benchmark
Legal reasoning: 90.9% on BigLaw Bench
New effort level:xhigh sits between high and max — five levels total: low / medium / high / xhigh / max
Task budgets: Now in public beta — token spend guidance for longer agentic runs
Tokenizer update: New tokenizer increases token usage roughly 1.0–1.35× for the same content; API pricing unchanged
Breaking change: Opus 4.8 has API breaking changes versus 4.6 — review Anthropic’s migration guide before upgrading
Alongside Opus 4.8, Anthropic launched Claude Design — an Anthropic Labs product for collaborating with Claude to produce visual outputs including designs, prototypes, slides, and one-pagers.
Anthropic announced a partnership with SpaceX to access Colossus 1 compute capacity. The immediate practical impact for subscribers:
Claude Code’s five-hour rate limits doubled for Pro, Max, Team, and seat-based Enterprise plans
Peak-hour limit reductions removed for Pro and Max (previously limits burned faster 5am–11am Pacific on weekdays)
Opus API limits raised for heavy API users
Anthropic is also reportedly evaluating an IPO as early as October 2026, and has disclosed run-rate revenue of $30B (up from $9B at end of 2025). The SpaceX deal comes as the company prepares that filing.
Claude Managed Agents — the fully managed agent harness launched in public beta earlier this year — gained three significant additions:
Dreaming (research preview): A scheduled process that reviews past agent sessions, extracts patterns, and curates memories so agents self-improve over time. Dreaming can update memory automatically or queue changes for human review before they land.
Multiagent Orchestration: A lead agent can now break a job into pieces and delegate each to a specialist sub-agent with its own model, prompt, and tools. Specialists work in parallel on a shared filesystem. Netflix is already using multiagent orchestration for its platform team.
Memory (public beta): Now generally available under the managed-agents-2026-04-01 beta header.
Claude Cowork — Generally Available
Claude Cowork is now GA on macOS and Windows through the Claude Desktop app. New additions with GA: Claude Cowork in the Analytics API, usage analytics, and expanded desktop automation capabilities.
Claude Code — What Shipped in May
Claude Code has been shipping near-daily updates. Notable May additions include:
Plugin URL loading:--plugin-url <url> flag fetches a plugin .zip from a URL for the current session
Project purge:claude project purge [path] deletes all Claude Code state for a project (transcripts, tasks, file history, config) with dry-run support
Package manager auto-update:CLAUDE_CODE_PACKAGE_MANAGER_AUTO_UPDATE runs upgrade in the background on Homebrew or WinGet installs
Push notifications: Claude can now send mobile push notifications when Remote Control is enabled
VS Code Remote Control:/remote-control bridges sessions to claude.ai/code to continue from a browser or phone
1M token context in Claude Code: Available to Max, Team Premium, and Enterprise Opus 4.6/4.7 users at no additional cost — no long-context surcharge as of March 2026
Redesigned desktop app: New session sidebar, drag-and-drop workspace, integrated terminal and file editor, faster diffs, SSH support on Mac
New Connectors Expansion
Claude’s connector directory has grown beyond work tools. New consumer app connectors include AllTrails, Instacart, Audible, Tripadvisor, Uber, and Spotify. The directory now exceeds 200 connectors. Claude surfaces relevant connectors in context during conversations rather than requiring users to browse a directory.
Finance Agent Templates
Anthropic released ten ready-to-run agent templates for financial services work: pitchbook building, KYC file screening, and month-end close workflows. Microsoft 365 add-ins for Excel, PowerPoint, Word, and Outlook are coming soon. A Moody’s MCP app brings Claude into financial data workflows.
Confirmed Upcoming Dates
These are officially announced by Anthropic — not speculation:
June 15, 2026: Claude Sonnet 4 (claude-sonnet-4-20250514) and Claude Opus 4 (claude-opus-4-20250514) are deprecated and retired from the Claude API. Migrate to Sonnet 4.6 and Opus 4.8 respectively before this date.
Microsoft 365 add-ins: Excel, PowerPoint, Word, and Outlook integrations announced as “coming soon” — no specific date published.
Anthropic IPO: Reportedly targeting as early as October 2026 — unconfirmed, no official date.
Google/Broadcom TPU partnership: Multi-gigawatt infrastructure with capacity launching in 2027.
Model Deprecation Summary
Claude Haiku 3 (claude-3-haiku-20240307) has already been retired — all requests now return an error. Migrate to Claude Haiku 4.5. Claude Sonnet 4 and Opus 4 retire June 15, 2026.
What to Watch For
Claude 5 is widely anticipated for Q2–Q3 2026 based on Anthropic’s release cadence, though Anthropic has made no official announcement. The advisor tool — which pairs a faster executor model with a higher-intelligence advisor model for long-horizon agentic workloads — launched in public beta and signals the architectural direction Anthropic is moving toward for complex, multi-step tasks.
The pace of Claude Code releases in particular has accelerated to near-daily — following Anthropic’s own disclosure that engineers internally use Claude for a growing share of their own development work.
The Claude Team plan’s usage limits changed significantly in May 2026. If you’re a Team subscriber and you haven’t noticed yet, you’re now getting substantially more capacity than you were in April — and the free tier got left behind entirely. Here’s exactly what changed, what you have now, and what it means in practice.
Updated May 9, 2026
Rate limits doubled for Team plan subscribers following Anthropic’s SpaceX Colossus 1 compute deal (announced May 6, 2026). Free plan excluded from all increases. This page reflects current limits.
What Changed in May 2026: The SpaceX Rate Limit Increase
On May 6, 2026, Anthropic announced a compute partnership with SpaceX, giving it access to SpaceX’s Colossus 1 data center. The practical result for paying subscribers came fast: rate limits doubled. Here’s the breakdown by tier:
Claude Code Pro and Max: 5-hour rate limits doubled
Team plan (all seats): 5-hour rate limits doubled
Seat-based Enterprise: 5-hour rate limits doubled
Tier 1 API customers: Max input tokens per minute increased 1,500%; max output tokens per minute increased 900%
Peak-hours throttling: Eliminated entirely for Pro and Max subscribers
Free plan: No change. Explicitly excluded from all increases.
The 1,500% input token figure for Tier 1 API is the one that didn’t get much press coverage. That’s a 15× ceiling increase for API users who’ve been running agent pipelines and hitting hard walls. If you’ve been rate-limited during multi-step Claude Code runs, this is the change that matters most.
Team Plan Seat Structure (Still Current)
The seat types haven’t changed — just the capacity within them. The Team plan still offers two seat types that can be mixed within the same organization:
Seat Type
Annual Price
Monthly Price
Usage vs Pro
Claude Code
Standard
$20/seat/month
$25/seat/month
1.25× more per session
No
Premium
$100/seat/month
$125/seat/month
6.25× more per session
Yes
Both seat types benefit from the May 2026 doubling of the 5-hour rate limit window. A Premium seat’s 6.25× multiplier now applies to a higher baseline than it did before May 6.
How the 5-Hour Rate Limit Window Works
Anthropic uses a rolling 5-hour window for usage limits, not a daily reset. Here’s what that means practically:
Usage is measured across a rolling 5-hour window, not midnight-to-midnight
If you hit the limit, you wait for the oldest usage to roll off — not for a fixed reset time
Heavy burst usage depletes your window faster than spread-out usage
The May 2026 doubling means the ceiling within that window is now twice as high
Peak-hours throttling — the extra restriction that kicked in during high-demand periods — is now eliminated for Pro and Max. Team plan benefits from the doubled limit floor; the throttling elimination is Pro and Max specific.
Deprecation notice: Claude Sonnet 4 and Opus 4 (original 4.0-generation, 20250514 date-string model IDs) were retired June 15, 2026. Update any API integrations before that date.
What the Free Plan Doesn’t Get
The May 2026 rate limit increase does not apply to free accounts. Anthropic explicitly excluded the free tier from all capacity increases tied to the SpaceX deal. Paid plans now have a substantially higher ceiling while the free ceiling stays the same. If you’re hitting limits regularly on the free tier, the May 2026 changes are pressure toward upgrading — not relief.
Team Plan vs Pro: Which Limit Structure Fits You?
Individual power user: Pro ($20/month) with throttling eliminated is a strong option.
Team with Claude Code needs: Team Premium seats ($100/seat/month annually) give Claude Code access, 6.25× multiplier, and the doubled 5-hour window.
Team without Claude Code needs: Standard Team seats ($20/seat/month annually) for shared access at higher limits than individual Pro.
Frequently Asked Questions
Did the Team plan rate limits actually double in May 2026?
Yes. Anthropic confirmed the 5-hour rate limit doubled for Team plan subscribers following the SpaceX Colossus 1 compute deal announced May 6, 2026. This applies to both Standard and Premium seats.
Does peak-hours throttling elimination apply to Team plan?
The peak-hours throttling elimination was announced specifically for Pro and Max subscribers. Team plan benefits from the doubled rate limit floor; throttling elimination was not announced for Team.
What happens when I hit a Team plan usage limit?
Claude notifies you that you’ve reached your usage limit. With the 5-hour rolling window, you can continue once older usage rolls off — you’re not waiting for a midnight reset. Burst usage depletes the window faster than spread usage over the same period.
Are Claude Sonnet 4 and Opus 4 still available on Team?
They remained available until June 15, 2026, when they were retired. Since then, the active lineup has been Fable 5, Opus 4.8, Sonnet 5, and Haiku 4.5.
Does the 1,500% Tier 1 API increase apply to Team plan API usage?
The 1,500% input and 900% output token increases apply to Tier 1 API customers specifically. Team plan through claude.ai uses the doubled 5-hour window. Both benefits apply in their respective contexts if you’re a Tier 1 API customer and a Team subscriber.
Is the free plan getting any rate limit improvements?
No. The free plan was explicitly excluded from all rate limit increases in the May 2026 SpaceX announcement.
Claude pricing at a glance (plan prices verified July 20, 2026): Free $0 · Pro $20/month ($17/month billed annually) · Max $100 or $200/month · Team $25/seat ($20 annual) or Premium $125/seat ($100 annual) · Enterprise from $20/seat plus usage · API billed per million tokens by model.
Anthropic’s Claude pricing covers six tiers — Free, Pro, Max 5x, Max 20x, Team, and Enterprise — plus a separate pay-per-token API. Choosing the wrong path can cost you significantly more than necessary. Here’s what each option actually includes in 2026.
What Are Claude’s Subscription Plans and Prices?
Claude offers six tiers: Free ($0), Pro ($20/month), Max 5x ($100/month), Max 20x ($200/month), Team (from $20/seat/month billed annually), and Enterprise (custom pricing).
The Free plan gives you access to Claude on web, iOS, Android, and desktop with no credit card required, subject to rolling usage limits.
The Free plan gives you access to Claude on web, iOS, Android, and desktop with no credit card required. It includes text, image, and code generation plus web search. Usage limits are intentionally opaque — Anthropic doesn’t publish exact message caps — but limits reset on a rolling 5-hour window. The Free tier is designed for exploration, not sustained daily work.
Is Claude Pro Worth $20 a Month?
Pro delivers substantially more usage than Free, plus Claude Code, unlimited projects, the Research feature, and Google Workspace integration — sufficient for most individual developers and writers.
Pro delivers substantially more usage than Free, Claude Code in the terminal, unlimited projects, the Research feature, file creation, code execution, and Google Workspace integration. Usage still has limits — Anthropic does not publish exact message counts, but heavy sessions will reach the ceiling — but it’s sufficient for most individual developers and writers. Annual billing brings the effective rate to $17/month.
What Is the Difference Between Claude Max 5x and Max 20x?
Max 5x ($100/month) gives you 5x Pro’s per-session usage; Max 20x ($200/month) gives you 20x — enough that rate limits stop being a practical concern for full-day development work.
Max 5x provides 5x Pro’s per-session headroom at $100/month. Max 20x at $200/month delivers 20x Pro usage — enough that rate limits stop being a practical concern for most full-day development work. Both tiers include Claude Code, with access to Claude Opus 4.8 and Sonnet 4.6, and a 1M token context window.
Extra usage is available on Pro, Max 5x, and Max 20x — when you hit your included limit, you can continue at standard API-rate billing with a spending cap you set.
How Does Claude Team Plan Pricing Work?
Team requires a minimum of 5 seats: Standard seats at $20/seat/month billed annually ($25 monthly) include collaboration features but not Claude Code; Premium seats at $100/seat/month billed annually ($125 monthly) add Claude Code for developers.
Team requires a minimum of 5 seats and comes in two flavors. Standard seats at $20/seat/month billed annually ($25 billed monthly) include 1.25x more usage per session than Pro with a weekly reset, plus collaboration features, central billing, SSO, and Microsoft 365 and Slack integrations. Standard seats do not include Claude Code.
Premium seats at $100/seat/month billed annually ($125 monthly) add Claude Code, making them the right choice for engineering team members. You can mix Standard and Premium seats within one Team plan — so non-technical staff get Standard while developers get Premium.
Enterprise Plan — Custom Pricing
Enterprise is for organizations with compliance, data residency, or governance requirements. It includes access to the full 1M token context window, HIPAA readiness, SAML SSO, domain capture, spend controls, and dedicated support. Based on user reports, pricing starts around $60/seat with a 70-seat minimum, putting the floor near $50,000 annually — contact Anthropic sales for exact figures. Training on customer data is disabled contractually at this tier.
How Much Does the Claude API Cost Per Token?
As of June 2026: Claude Fable 5 costs $10.00 input / $50.00 output per million tokens; Claude Opus 4.8 costs $5.00 / $25.00; Claude Sonnet 4.6 costs $3.00 / $15.00; Claude Haiku 4.5 costs $1.00 / $5.00.
The API is entirely separate from subscription plans. You pay per million tokens (MTok) with no monthly minimum. Current rates as of June 19, 2026 (verified June 19, 2026 from Anthropic’s official models page):
Claude Fable 5: $10.00 input / $50.00 output per MTok
Claude Opus 4.8: $5.00 input / $25.00 output per MTok
Claude Sonnet 4.6: $3.00 input / $15.00 output per MTok
Claude Haiku 4.5: $1.00 input / $5.00 output per MTok
Prompt caching cuts input costs by up to 90% for repeated context. The Batch API processes requests within 24 hours at a flat 50% discount on all tokens — ideal for content pipelines, data enrichment, and any workload where real-time responses aren’t required. As of March 2026, Anthropic eliminated long-context surcharges, so a 900K-token request costs the same per-token rate as a 9K one.
June 2026 — Professional Services Pricing
Managed Agents
Token rates + $0.08/session-hour active runtime. No surcharge for Orchestration or Outcomes (public beta).
Claude Security Beta
Included in Enterprise during beta. Powered by Opus 4.8 ($5/$25 per MTok at API rates).
Start with Pro for individual use, move to Max 5x if you regularly hit limits, choose Max 20x for full-day heavy use, and use Team for groups of 5+ where Standard seats cover non-technical staff and Premium covers developers.
Start with Pro if you’re an individual who hits Free limits regularly. Move to Max 5x if you’re a developer doing focused coding sessions. Max 20x makes sense if Claude is your primary tool throughout the workday. For teams, buy Standard seats for non-technical staff and Premium seats for developers who need Claude Code. If you’re building an application or automation that calls Claude programmatically, use the API — subscription plans don’t provide API credits and don’t reduce API costs.
Claude API Pricing: Pay-Per-Token Rates for Every Model
The Claude API is priced separately from claude.ai subscriptions. You pay per million tokens (MTok) consumed — input and output priced separately. There is no monthly minimum; you add credits and they deplete as you use the API.
Prompt caching reduces costs significantly for repeated context: cache write is 25% of base input price, cache read is 10%. The Batch API offers 50% off all models for non-time-sensitive work. For a full breakdown of how to minimize token spend, see Claude on a Budget: the Complete Guide.
How Does Claude Pricing Compare to GPT-4o and Gemini 2.0?
Claude Sonnet 4.6 sits above GPT-4o on price but competes at or above it on reasoning tasks. Claude Haiku 4.5 is the cost-competitive option for high-volume pipelines. Gemini 2.0 Flash is significantly cheaper for commodity tasks; the trade-off is reasoning depth and context handling on complex documents.
How Much Does a Claude License Cost for Business?
A Claude business license is sold per seat: Team Standard seats cost $20/seat/month billed annually ($25 monthly), Team Premium seats with Claude Code cost $100/seat/month billed annually ($125 monthly), with a 5-seat minimum. Enterprise licenses are custom-priced annual contracts.
License type
Annual billing
Monthly billing
Minimum seats
Claude Code
Team Standard seat
$20/seat/month
$25/seat/month
5
No
Team Premium seat
$100/seat/month
$125/seat/month
5
Yes
Enterprise license
Custom (annual contract — contact sales)
~70 (reported)
Yes
If you’re writing a budget request or procurement document, here are the numbers that matter: a 10-person team with 7 Standard and 3 Premium seats runs $440/month on annual billing — $5,280/year. Licenses are managed centrally with consolidated billing, SSO, and admin controls, and you can mix Standard and Premium seats within one plan. A Claude license covers the claude.ai apps and (on Premium seats) Claude Code; it does not include API credits, which are billed separately per token. There is no perpetual or one-time license option — all Claude licensing is subscription-based.
How Much Does Claude Code Cost?
Claude Code has no standalone price — it’s included with Pro ($20/month), Max 5x ($100/month), Max 20x ($200/month), Team Premium seats ($100/seat/month annual), and Enterprise. Alternatively, run it against an API key and pay per token.
Plan
Claude Code included?
Usage headroom
Free
No
—
Pro ($20/mo)
Yes
Standard Pro limits — enough for an hour or two of daily coding
Max 5x ($100/mo)
Yes
5x Pro — sustained daily development
Max 20x ($200/mo)
Yes
20x Pro — full-day heavy use and parallel sessions
Team Standard
No
—
Team Premium ($100/seat annual)
Yes
Per-seat developer allocation
Enterprise
Yes (Premium seats)
Custom
API key (pay-per-token)
Yes
No plan limits — billed at standard model token rates
For automation — cron jobs, CI pipelines, claude -p scripts — note the June 15, 2026 change: subscription plans get a monthly Agent SDK credit pool (Pro $20, Max 5x $100, Max 20x $200, Team Standard $20/seat, Team Premium $100/seat), with overage billed at API rates. Full details in the Agent SDK dual-bucket billing guide. For the complete tier-by-tier breakdown including API-key economics, see the full Claude Code pricing guide.
What Are Claude’s Usage Limits and Extra Usage Costs?
Every Claude plan has usage limits that reset on a rolling 5-hour window, plus weekly caps on paid tiers. When you hit a paid plan’s limit, you can either wait for the reset or buy extra usage at standard API token rates with a spending cap you control.
Plan
Relative usage
Reset window
Extra usage available?
Free
Baseline (light use)
Rolling 5 hours
No — upgrade required
Pro
~5x Free
Rolling 5 hours + weekly cap
Yes — API rates, capped by you
Max 5x
5x Pro
Rolling 5 hours + weekly cap
Yes
Max 20x
20x Pro
Rolling 5 hours + weekly cap
Yes
Team Standard
1.25x Pro per seat
Weekly reset
Yes (admin-controlled)
Team Premium
Higher, includes Claude Code
Weekly reset
Yes (admin-controlled)
Anthropic intentionally doesn’t publish exact message counts — limits are measured in compute, so long conversations, large file uploads, and Opus-heavy sessions consume your window much faster than short Haiku chats. For the full mechanics, see Claude Team plan usage limits and Claude API rate limits.
Claude Pricing by Country: UK, Australia, India, and Canada
Anthropic charges the same USD list price in every country — Claude Pro is $20/month worldwide. Your bank converts to local currency, and applicable local tax (VAT or GST) is added at checkout.
Country
Claude Pro (approx. local)
Claude Max 5x (approx. local)
Tax added at checkout
United Kingdom
≈ £16/month
≈ £79/month
20% VAT
Australia
≈ A$31/month
≈ A$153/month
10% GST
India
≈ ₹1,700/month
≈ ₹8,600/month
18% GST
Canada
≈ C$27/month
≈ C$137/month
GST/HST (5–15% by province)
New Zealand
≈ NZ$33/month
≈ NZ$166/month
15% GST
Local-currency figures are approximate conversions at June 2026 exchange rates — your card statement reflects your bank’s rate plus any foreign-transaction fee. There is no region-specific discount pricing for claude.ai plans, and API token rates are likewise USD-denominated everywhere. Prices shown on Anthropic’s pricing page exclude applicable tax.
Frequently Asked Questions: Claude Pricing
How much does Claude cost per month?
Claude costs $0 (Free), $20/month (Pro), $100/month (Max 5x), or $200/month (Max 20x) for individual plans. Team plans start at $20/seat/month (annual billing, 5-seat minimum). API access is pay-per-token with no monthly minimum.
Is there a free version of Claude?
Yes. The Free plan gives access to Claude on web, iOS, Android, and desktop with no credit card required. Usage limits apply and reset on a rolling 5-hour window. The Free tier is suitable for light, exploratory use but not sustained daily work.
What does Claude Pro include at $20/month?
Pro includes approximately 5x the usage of Free, Claude Code in the terminal, unlimited projects, the Research feature, file creation, code execution, and Google Workspace integration. Annual billing brings the effective rate to $17/month.
What is the cheapest way to use Claude?
The Free plan is the cheapest at $0. For API access, Claude Haiku 4.5 at $1 input / $5 output per MTok is the most cost-efficient model. Combined with the Batch API (50% discount) and prompt caching, high-volume workflows can run at a fraction of standard API cost.
What is Claude Max and is it worth $100–$200 per month?
Claude Max comes in two tiers: Max 5x at $100/month gives 5x Pro’s per-session usage, and Max 20x at $200/month gives 20x. Max is worth it if you’re hitting Pro limits regularly during development or coding sessions. Both include Claude Code and the full 1M token context window with Claude Opus 4.8 and Sonnet 4.6.
How does Claude Team pricing work?
Team plans require a minimum of 5 seats. Standard seats cost $20/seat/month billed annually ($25 monthly) and include collaboration features. Premium seats cost $100/seat/month billed annually ($125 monthly) and add Claude Code — the right choice for developers on the team. You can mix Standard and Premium seats within the same Team plan.
Does Claude Pro give you access to Claude Opus 4.8?
Pro gives you access to Claude’s models including Opus 4.8 for complex tasks, Sonnet 4.6, and Haiku 4.5, subject to usage limits. The Max tiers give you significantly more headroom to use Opus 4.8 for extended sessions. For unlimited, predictable API access to Opus 4.8, use the API directly at $5 input / $25 output per million tokens.
What is the Claude API cost per million tokens in 2026?
As of June 2026 (verified from Anthropic’s official docs): Claude Opus 4.8 costs $5.00 input / $25.00 output per million tokens; Claude Sonnet 4.6 costs $3.00 input / $15.00 output; Claude Haiku 4.5 costs $1.00 input / $5.00 output. The Batch API offers 50% off all models for non-real-time work.
Does Claude have a student discount?
There is no individual self-serve student discount, but Anthropic now offers an Education plan with discounted rates for universities and their members — check whether your institution participates. Otherwise students can use the Free tier without a credit card, and the cheapest paid path is Pro at $17/month with annual billing.
Can I use Claude without a subscription by paying per use?
Not directly through claude.ai — the website only offers Free, Pro, Max, and Team subscription plans. Pay-per-use access is available only through the Claude API, which requires a developer account. API pricing starts at $1 input / $5 output per million tokens for Haiku 4.5 with no monthly minimum charge.
How much does the Anthropic Console (Claude Console) cost?
The Anthropic Console itself is free — it’s the developer dashboard for managing API keys, tracking usage, and testing prompts in the Workbench. You only pay for the API tokens you consume, starting at $1 input / $5 output per million tokens for Haiku 4.5. You add prepaid credits to get started; there is no monthly platform fee.
How much is a Claude license for business?
Claude business licensing is per-seat: Team Standard seats cost $20/seat/month billed annually ($25 monthly), and Team Premium seats with Claude Code cost $100/seat/month billed annually ($125 monthly), with a 5-seat minimum. Enterprise licenses are custom annual contracts. There is no perpetual license — all Claude licensing is subscription-based.
Does the Claude desktop app cost extra?
No. The Claude desktop app for Windows and macOS is included with every plan, including Free. Desktop, web, and mobile all share the same account and the same usage limits — there is no separate desktop pricing.
Is Claude cheaper in India, the UK, or Australia?
No — Anthropic charges the same USD list price worldwide. Claude Pro is $20/month everywhere; your bank converts it to local currency (roughly £16, A$31, or ₹1,700) and local VAT or GST is added at checkout where applicable. There is no regional discount pricing.
Is Claude available on Azure, AWS, or Google Cloud?
Yes. Claude models are available through Amazon Bedrock and the Claude Platform on AWS, Google Cloud’s Vertex AI, and Microsoft Foundry. Cloud-platform pricing is token-based and aligned with Anthropic’s API rates, billed through your existing cloud account — useful if your organization has cloud spend commitments to draw down.
Does Anthropic offer nonprofit pricing?
Anthropic doesn’t list a standing nonprofit discount on its pricing page as of June 2026. Nonprofits typically start with Team at standard rates or contact Anthropic sales about Enterprise terms. An Education plan with discounted rates does exist for universities and their members.
May 2026: Managed Agents & Claude Security Pricing
Updated June 19, 2026
Anthropic’s professional services now include Managed Agents and Claude Security. Pricing for both is API-based, not subscription-based.
Claude Managed Agents Pricing
Managed Agents pricing follows the standard API token rates for whichever Claude model you use inside the agent pipeline — there’s no separate Managed Agents surcharge on top of model costs. You pay for the tokens the models consume:
The Dreaming advisor tool uses a short-plan generation (typically 400–700 tokens) at the advisor model’s rate, while the executor handles full output at its lower rate — keeping combined cost well below running the advisor model end-to-end. Use max_uses to cap advisor calls per request. Requires beta header: anthropic-beta: advisor-tool-2026-03-01. Docs: platform.claude.com/docs/en/managed-agents/dreams
Claude Security Beta Pricing
Claude Security is currently in public beta for Enterprise customers. Anthropic has not published a standalone per-scan or per-seat price for Claude Security Beta — access is included as part of Enterprise during the beta period. Underlying model is Claude Opus 4.8 ($5 input / $25 output per million tokens at API rates). For Enterprise pricing including Claude Security, contact Anthropic sales.
Claude Mythos Preview Pricing (Project Glasswing)
Claude Mythos Preview is not available via standard API or any subscription tier. Through Project Glasswing (invitation-only, defensive cybersecurity workflows): $25 per million input tokens, $125 per million output tokens. No self-serve access — contact Anthropic for Glasswing information at anthropic.com/glasswing.
What to do next
Now that you have the price — here’s how to actually run it
Knowing the cost is step one. The harder questions are whether Managed Agents is the right architecture for your use case, how it compares to building on the raw API, and what a realistic monthly bill looks like at scale.
Use this tool to figure out which Claude plan actually fits your usage, what you’d pay on the API equivalent, and how the new June 15, 2026 Agent SDK billing change affects your costs. All rates verified against Anthropic’s official pricing documentation as of June 19, 2026.
Tell us how you use Claude
2 = roughly 30 hours of normal Claude use per month
Output is typically ~25% of input for chat work
$ value of unattended Claude work (cron jobs, scripts, GitHub Actions). 0 if you only chat.
Your estimated costs
Email me this breakdown
Get your numbers in your inbox so you can compare plans later — or forward them to whoever approves the budget.
This calculator uses Anthropic’s published API rates as of June 19, 2026. Subscription pricing reflects current public plans. The Agent SDK monthly credit pool launches June 15, 2026 — Pro $20, Max 5x $100, Max 20x $200, Team Standard $20/seat, Team Premium $100/seat.
What Claude Actually Costs: Six Worked Examples (June 2026)
The calculator above is interactive; these are the same calculations worked through for six common usage profiles, using Anthropic’s published rates as of June 19, 2026. API-equivalent figures assume standard rates with no prompt caching or batch discounts.
Profile
Monthly usage
Best plan
Plan cost
API equivalent
Casual user — questions a few times a week
0.5M in / 0.13M out (Sonnet 4.6)
Free, or Pro for headroom
$0–$20
≈ $3.45/mo
Individual writer or analyst — daily use
2M in / 0.5M out (Opus 4.8)
Pro
$20 ($17 annual)
≈ $22.50/mo
Developer — focused daily coding with Claude Code
10M in / 2.5M out (Opus 4.8)
Max 5x
$100
≈ $112.50/mo
Power user — Claude open all day, parallel sessions
30M in / 7.5M out (Opus 4.8)
Max 20x
$200
≈ $337.50/mo
5-person team — 3 non-technical, 2 developers
Mixed
Team: 3 Standard + 2 Premium
$260/mo (annual billing)
Varies by usage
High-volume pipeline — classification or enrichment
50M in / 10M out (Haiku 4.5, Batch API)
API direct
—
≈ $50/mo (after 50% batch discount)
The pattern: subscriptions beat the API whenever usage is steady and interactive — Pro pays for itself at roughly 2M input tokens a month on Opus 4.8. The API wins for spiky automated workloads, anything that can use the Batch API, and pipelines that run on Haiku 4.5. A reasonable rule of thumb: if your monthly API equivalent lands more than about 50% above a subscription price, take the subscription.
Next Steps: What to Read After This
You came here for pricing. Depending on what you actually need to do next, these are the right places to go:
There is no public “Claude student discount” code, and as of June 13, 2026 Anthropic does not publish a percentage-off student price on Claude Pro. What actually exists is better than a coupon for many students: free Claude through a participating university, a paid campus program, free API credits to test against, and a genuinely capable free tier. Below is every route we could verify against a primary source — who qualifies, what you get, the real cost, and how to claim it. Anything we could not confirm from an official Anthropic or GitHub page is listed at the end as “not verified,” not in the tables.
The routes at a glance
Lift any single row. Each route is verified against the source linked in the last column’s footnote. “Cost” is the price to the student, not the institution.
“Academic and research discounts may be available” on API usage
Negotiated
Contact Anthropic sales
The “discount” that isn’t — avoid these
Most “Claude student discount code” pages rank for a deal that does not exist. There is no Anthropic-issued promo code that takes a percentage off Claude Pro for individual students. Do not enter a code from a coupon aggregator, and do not buy “discounted Claude Pro” from a third-party reseller — shared or resold accounts violate Anthropic’s terms and can be revoked.
Claim you’ll see
Reality
“Use this Claude Pro student promo code for X% off”
Not real. Anthropic publishes no individual-student discount code on Pro as of June 13, 2026. Verify with your university route instead.
“Buy cheap shared Claude Pro / Max accounts”
Avoid. Reselling and account-sharing breach Anthropic’s terms; access can be terminated. Not a legitimate route.
Route detail: free Claude through your university
Claude for Education is Anthropic’s official higher-education program. When a university buys in, eligible students, faculty, and staff get Claude’s premium capabilities — including Learning Mode (which Anthropic describes as working “like a tutor — it asks the questions that help you find the answers yourself”) and Claude Code for teaching programming. The student does not pay; the institution licenses a university-wide plan and provisions accounts, typically tied to your school email domain. If your school is not yet a partner, the only action available to you is to ask your IT or student-services team to contact Anthropic’s education team — there is no individual sign-up for this plan.
Route detail: the Claude Campus Program
The Campus Program runs in cohort rounds and has two student tracks. Campus Ambassadors work directly with Anthropic to lead AI-education efforts on campus and receive Claude Pro access plus API credits and a paid stipend. Builder Clubs let students set up an Anthropic-supported organization for AI builders on their campus; members get Claude Pro access and monthly API credits and run hackathons, workshops, and demo nights. Applications open and close by cohort — the Spring 2026 round is in session and closed; watch claude.com/programs/campus for the next intake.
Route detail: free API credits and the free tier
If you want to build with Claude rather than chat, create a Claude Console account: Anthropic’s pricing documentation states that “new users receive a small amount of free credits to test the API.” Anthropic does not publish a fixed dollar figure on that page, so treat any specific number you see elsewhere as unverified. Separately, the no-cost Claude free tier covers a lot of student work on its own — chat across web, iOS, Android, and desktop, plus web search, file creation, code execution, extended thinking, and connectors. For heavier API use, Anthropic also notes that “academic and research discounts may be available” — a sales conversation, not a self-serve coupon.
A note on GitHub Copilot (read before you rely on it)
Many guides still claim verified students get free GitHub Copilot Pro — which includes Anthropic’s Claude models — through the GitHub Student Developer Pack. As of June 13, 2026, GitHub’s own documentation tells a narrower story: the two ways to qualify for free Copilot Pro are being a verified teacher on GitHub Education or a maintainer of a popular open-source repository. GitHub’s docs also state that, starting April 20, 2026, “new sign-ups for Copilot Pro, Copilot Pro+, Copilot Max, and student plans are temporarily paused,” and the Student Pack page itself shows Copilot sign-ups paused. Because the student-Copilot path is in flux, we are keeping it out of the verified routes table — check GitHub Education for current status before counting on Claude-via-Copilot.
For comparison: what Claude costs without a discount
These are the standard consumer prices (USD), so you can judge whether a route is worth the effort. Prices verified from claude.com/pricing on June 13, 2026.
Plan
Price
Notable inclusions
Free
$0
Chat, web search, file creation, code execution, extended thinking, connectors
Pro
$17/mo billed annually ($200 upfront), or $20/mo monthly
Higher usage, Claude Code, unlimited projects, Research access, more model options
Max
From $100/mo
5x or 20x Pro usage, elevated output limits, early features, priority during peak
Team
$20/seat/mo annual ($25 monthly); 5–150 people
Enterprise search, SSO, admin controls, central billing
FAQ
Is there a Claude student discount code?
No. As of June 13, 2026 Anthropic does not publish an individual-student discount code for Claude Pro. The legitimate ways to save are free Claude through a partner university (Claude for Education), the Claude Campus Program, free API credits, and the free tier. Treat any “promo code” from a coupon site as not real.
How do I get free Claude Pro as a student?
Through your school. If your university participates in Claude for Education, sign in to claude.ai with your school email and your account is provisioned with premium features at no cost to you. If your school isn’t a partner, ask IT or student services to contact Anthropic’s education team — there is no individual self-serve sign-up for this plan.
Do I still get Claude through the GitHub Student Developer Pack?
It’s uncertain right now. GitHub’s documentation currently lists only verified teachers and popular open-source maintainers as qualifying for free Copilot Pro, and states that new student-plan sign-ups are temporarily paused as of April 20, 2026. Check GitHub Education for current status before relying on Claude-via-Copilot.
How much free API credit does a new account get?
Anthropic’s pricing docs say new users receive “a small amount of free credits to test the API” but do not publish a fixed dollar amount on that page. Any specific figure you see elsewhere is not officially confirmed. Create an account at console.anthropic.com to see your current credit.
What does the Claude Campus Program pay?
Campus Ambassadors receive Claude Pro access, API credits, and a paid stipend for leading AI-education work on campus; Builder Club members get Claude Pro access and monthly API credits. Applications run in cohorts — the Spring 2026 round is closed; watch claude.com/programs/campus for the next one. The exact stipend amount is not published on the official program page.
Law firms have always been early adopters of tools that compress billable time. Document review software. Legal research databases. E-discovery platforms. The pattern is consistent: the firms that adopt early capture the margin advantage, and the rest catch up at cost.
Claude is following that pattern. And the window where using it is a competitive advantage rather than table stakes is closing faster than most legal professionals realize.
This is a practical guide to where Claude actually delivers in legal work — not theoretical use cases, but the specific tasks where it earns its keep — and where you still need a human in the loop.
Where Claude Delivers the Most Value in Legal Practice
Legal Research and Case Law Summarization
The highest-leverage use case for most attorneys is research compression. Claude can take a 40-page appellate decision and return a structured summary — holding, reasoning, key facts, dissent — in under 60 seconds. It can synthesize across multiple cases to identify how a circuit has treated a specific doctrine over time.
What it cannot do: verify citations autonomously or guarantee it has not hallucinated a case name. Every citation must be independently verified in Westlaw or Lexis before it goes into a brief. Claude is the first pass, not the final check.
Practical workflow: paste the full text of the opinion (Claude’s 200K context window handles most decisions comfortably), ask for a structured summary with specific fields — holding, key facts, procedural posture, distinguishing factors — and use that as the basis for your own analysis rather than the analysis itself.
Contract Drafting and Redlining
Claude handles first-draft contract language well, particularly for standard commercial agreements where the structure is predictable: NDAs, MSAs, employment agreements, vendor contracts. Give it the deal terms and the governing law, and it produces a serviceable first draft that your attorney then marks up rather than writing from scratch.
For redlining, paste the counterparty’s draft and ask Claude to identify provisions that deviate from market standard, flag missing protections, or summarize the risk profile of specific clauses. It catches things that get missed at 11pm on a deal close.
The limitation: Claude does not know your client’s specific risk tolerance, industry norms for your particular market, or the negotiating history with this counterparty. Those judgment calls remain human work.
Deposition and Discovery Preparation
One of the most underused legal applications is using Claude to prepare for depositions. Feed it the deponent’s prior testimony, relevant documents, and the key issues in the case. Ask it to generate a question outline organized by theme, flag inconsistencies in prior statements, and identify documents to confront the witness with.
It can also process large document productions and summarize by custodian, date range, or topic — substantially reducing the time a paralegal or junior associate spends on initial review.
Client Communication and Memo Drafting
Client-facing memos — explaining a legal issue in plain language, summarizing a court ruling’s implications, drafting a status update — are exactly the kind of writing where Claude performs well and where attorneys often underinvest time. The work is important but not intellectually complex. Claude produces a solid draft; the attorney reviews, adjusts for client relationship context, and sends.
What Claude Cannot Do in Legal Work
It cannot verify citations. It will hallucinate case names and citations with confidence. Every citation must be checked against an authoritative legal database.
It cannot provide legal advice. It produces language and analysis, not professional judgment. The attorney exercises judgment; Claude compresses the work that precedes it.
It does not know current law. For recent statutory changes, new regulations, or fresh precedent, you need current research tools.
It lacks client context. Claude does not know your client’s history, risk appetite, or the relationship dynamics that shape legal strategy.
Confidentiality considerations apply. Before pasting client documents into any AI tool, your firm needs a clear policy on what data is permissible to process externally and under what terms.
Getting Claude Set Up for Legal Work
The most effective legal deployment of Claude is not the chat interface — it is Claude with a strong system prompt that establishes context, format expectations, and guardrails. A system prompt for a litigation practice might specify the governing jurisdiction, output format requirements, what it should flag for attorney review, and firm-specific terminology.
For firms with technical capacity, Claude’s API allows integration directly into document management systems, allowing attorneys to invoke Claude without leaving the tools they already use.
The Billing Question
The elephant in the room for law firms considering AI adoption is the billing model. If Claude compresses a five-hour research task to one hour, do you bill five hours or one?
The firms navigating this well are shifting toward value billing and fixed-fee arrangements where efficiency is profit rather than a billing problem. The ABA and state bars are actively developing guidance on AI use and disclosure. Following your jurisdiction’s bar guidance and staying current on disclosure requirements is non-negotiable.
Bottom Line
Claude does not replace legal judgment. It compresses the work that precedes judgment — research, drafting, review, summarization — at a quality level that makes it worth building into the workflow of any firm serious about efficiency. Pick one task category, run Claude against your next ten instances of that task, and measure the time delta. The ROI case makes itself.