Claude for Gorgias: 4 real ways to connect them in 2026

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited August 12, 2026

Expert Verified
Illustration of a Shopify support inbox on one side connected to an AI reasoning layer on the other

Claude is probably already in your Gorgias account

I build AI agents at eesel, which means I spend most of my week on the unglamorous half of this problem: retrieval, tool calls, and the handover logic that decides when a model should shut up and fetch a human. Across thousands of live support queues, the single most reliable lesson is that the model is rarely the thing that breaks. The plumbing around it is.

That is worth holding onto here, because the honest answer to "which model does Gorgias use" is buried in a security document rather than a marketing page. The Gorgias security FAQ states it plainly:

"AI Agent uses a combination of multiple secure LLM providers, including OpenAI, Anthropic, and internally fine-tuned LLMs."

The AI Agent product page tells a narrower story, naming only an OpenAI partnership and carrying only an OpenAI logo. Both are true. Anthropic is in the mix; OpenAI is the badge on the door.

The Gorgias AI Agent product page, split into a pre-purchase Shopping Assistant and a post-purchase Support Agent, as taken from Gorgias

What matters for anyone searching for Claude here is the thing neither page mentions: Gorgias publishes no model name, no model version, and no switch. You cannot route your refund tickets to Claude and your product questions to something cheaper. So the practical question is not "can I use Claude with Gorgias" but "where exactly does Claude get to sit."

That question has a near-identical answer on other helpdesks, incidentally. I walked the same ground for Claude for Zendesk, and the shape of the problem barely changes: the model vendors build directories, the helpdesk vendors build agents, and nobody builds the bridge you actually wanted.

The four routes, and which ones run without you

There are exactly four ways to put Claude near a Gorgias queue in 2026. Two are operator tools that only move when a person drives them. Two can run against the queue unattended, and both make you build the loop yourself.

Diagram splitting four Claude routes for Gorgias into those needing a human at the keyboard and those running unattended
Diagram splitting four Claude routes for Gorgias into those needing a human at the keyboard and those running unattended
RouteWho it servesSetupCan it reply to a customer?Cost on top of Gorgias
Gorgias MCP connectorYour ops and CX leads~5 minutes, no codeOnly when a human drives itYour Claude subscription
HTTP integration and macrosAgents applying a macroDays, needs a serviceIndirectly, through variablesClaude API tokens
Gorgias API and your own serviceWhoever you assign to maintain itWeeks, then foreverYesTokens plus engineering time
Claude in ChromeOne person at a timeMinutesYes, by driving the UIPaid Claude plan

The rest of this post walks each one, with the limits that decide whether it survives contact with a real queue.

Route 1: the Gorgias MCP connector

This is the official Claude story, and it is very good at what it does. Gorgias runs a first-party remote MCP server at https://mcp.gorgias.com/mcp, and its own setup guide walks you through adding it in Claude Desktop under Customize, then Connectors, then Add custom connector. Claude Code users get a one-liner instead: claude mcp add --transport http gorgias https://mcp.gorgias.com/mcp.

The open beta announcement is refreshingly direct about the deal: it is included at no extra cost on any plan, AI Agent is not required, and you bring your own model subscription. Setup is quoted at around five minutes, and Gorgias maintains a public MCP cookbook of prompt recipes.

Gorgias also draws the line between its two AI products more clearly than most vendors bother to. AI Agent "lives inside your helpdesk and replies to customers on your behalf," while MCP "lets you operate your Gorgias account from an external AI tool."

What it can actually touch

Reads are live and broad. Writes are partly fenced off while the beta runs.

Diagram of Gorgias MCP capabilities split between reads that are live today and writes gated during the beta
Diagram of Gorgias MCP capabilities split between reads that are live today and writes gated during the beta

Per the docs, the connection can read and analyse tickets, audit and update settings, review AI Agent handovers, edit product information, surface voice-of-customer patterns, query analytics, reply to customers, post internal notes, update ticket status and priority, manage Gorgias rules, and view and update help center articles. The beta announcement adds the caveat: macro edits and AI Agent config writes are gated and roll out over the coming months.

Plan gating sits on the Claude side, not the Gorgias side. On Free, Pro and Max a user adds the connector themselves; on Team and Enterprise an Owner has to add it at the org level first. Free accounts are capped at one custom connector.

Where it shines. Ask it which Gorgias tags are dead weight, why your first response time slipped last week, or which handovers your agent config keeps getting wrong. That is real work, and it is work no dashboard does well.

It is also the fastest way I know to audit an existing setup. Point it at your guidance entries and ask which ones have never been retrieved, or have it read your Gorgias analytics and explain a CSAT dip in plain language.

Where it stops. It is a person-in-the-loop tool. Nobody is running a Tuesday-night refund queue by leaving a Claude Desktop window open, and Gorgias does not pretend otherwise.

Route 2: HTTP integrations and macro variables

This is the route most people picture when they say "wire Claude into Gorgias," and it is the one where the documentation quietly closes the door.

HTTP Integrations let Gorgias POST to your endpoint on ticket events, and they are available on every Helpdesk plan. The catch is a number: each request gets a 5-second timeout. A cold-start model call with any real context in front of it does not reliably fit in five seconds, and the retry rules make the first attempt matter more than you would like.

  • Connection accepted but no response inside 5 seconds: Gorgias retries only if the integration uses OAuth2. Header-auth integrations get exactly one shot.
  • An error status like 429 or 500: no retry, either way.
  • When retries do apply, it is 3 attempts with 10, 20 and 40 second backoff.
  • After 500 consecutive failures, Gorgias disables the integration. The counter resets on any success.

There are three more constraints that shape the design more than the timeout does. First, the Rules builder has no HTTP action anywhere in its 21 THEN options, so you cannot write "if intent is refund, call my model." Second, macro HTTP hooks fire when an agent applies the macro and are one-way, with no documented path from the response back into the reply. Third, the Customer Data and Customer Other Integrations rule conditions are both marked temporarily decommissioned, so branching a rule on whatever your model returned is not currently on the menu.

The response can still reach a reply, but only through back-office variables, with syntax like {{ticket.customer.integrations[9141].data.delivery_cost}} where the number is the integration ID from its settings URL. And here is the failure mode I would lose sleep over: a missing variable renders as a blank space, not an error. A broken path does not fail loudly. It ships a reply to a customer with a hole in it.

The honest read is that HTTP integrations are a great way to pull an order lookup into the sidebar and a poor way to put a language model in front of a customer. Anyone using them for the former should read our guide to Gorgias automation first, and the Shopify side panel walkthrough second.

Worth noting the same walls apply if you were planning to swap in a different model vendor rather than Claude. The Gorgias and ChatGPT route hits an identical 5-second ceiling, because the constraint is the helpdesk, not the model.

Route 3: the API and your own service

If you want Claude actually writing replies in Gorgias, this is the route that works, and it is a real project rather than a weekend.

The shape is: acknowledge the HTTP integration immediately, queue the model call, then write the answer back with POST /api/tickets/{ticket_id}/messages. Or skip the push side entirely and poll GET /api/events, which has no 5-second cliff and no auto-disable risk, at the cost of latency.

The Gorgias API authenticates over HTTP Basic with your email and an API key, though public apps must use OAuth2. Rate limits are worth checking twice, because Gorgias publishes two different figures: the pricing page lists 2 requests per second as a plan feature (4 on Enterprise), while the developer reference gives 80 requests per 20 seconds on OAuth2 and 40 per 20 seconds on an API key, with Enterprise getting those same counts on a tighter 10-second window. Budget against the lower number. There is also no webhook subscription API at all, which surprises people migrating from other helpdesks.

Two operational details worth flagging before you scope this. Gorgias now retains events for only 12 months, with older IDs returning 404. And API keys are per-user with full account access, which means a departing admin's key is a live production dependency. Check your roles and permissions before anyone hands in a laptop.

On the Claude side, you have three ways in. The Messages API MCP connector lets your backend call Gorgias tools directly, with per-tool allowlists, though only tool calls from the MCP spec are supported. The Claude Agent SDK hands you Claude Code's agent loop in Python or TypeScript. Or you write the loop yourself against the raw API.

Our Claude integration guide covers how those three differ in practice, and Claude managed agents covers the hosted option if you would rather not run the loop at all.

One licensing line matters if you were planning to hand this to customers: third-party developers may not offer claude.ai logins or rate limits to their users without prior approval. You pay API rates.

This is the point in every build-versus-buy conversation where somebody says the quiet part. A customer of ours put it better than I could:

"We could try to write our own LLM application but we didn't want to invest our time into that. We wanted something that we would not have to maintain."

Route 4: Claude in Chrome driving the Gorgias tab

Technically this works. Claude in Chrome is available on any paid plan at no extra charge, it operates the browser from screenshots, and a Gorgias tab is just a web page.

I would not put it on a support queue, and neither would Anthropic. Its own safety guidance advises against using it with work accounts holding sensitive company data, and against sites holding other people's personal information. A support inbox is both of those things at once, wearing a hat. It is also Chrome-only, beta, blocked for HIPAA organisations, and single-seat by nature.

Use it to explore an unfamiliar Gorgias view or reverse-engineer a reporting screen. Do not use it to answer customers. Our Claude for Chrome piece goes deeper on what the extension is good for.

What this actually costs per ticket

Here is where the ecommerce math gets interesting, because the token bill is almost irrelevant next to the helpdesk bill.

Current Claude pricing puts Sonnet 5 at $2 per million input tokens and $10 per million output. A ticket-sized call, generously sized, lands around a cent. Opus 5 at $5 and $25 is a few cents. Prompt caching reads bill at a tenth of base input, so a static knowledge block gets cheap fast. There is no long-context premium in the Claude 5 line, so a fat ticket thread costs the same per token as a short one.

Now the Gorgias side. The pricing page runs two meters against the same inbox, and this is the part I see teams misread most often.

StarterBasicProAdvanced
Monthly billing$40$90$550$1,430
Annual billingnot offered$77/mo$471/mo$1,227/mo
Tickets included503002,0005,000
Automated interactions included3030190530
Extra ticket$0.40$0.40$0.36$0.36
Extra automated interaction$1.50$1.50$1.50$1.50
Seats3500500500
BigCommerce / Magentono / noyes / noyes / yesyes / yes

If you want the tier-by-tier reading rather than the summary, our Gorgias plans comparison breaks each one down, and the ticket limit guide explains what counts as billable.

Two things in that table do real damage if you miss them.

The first is that a fully automated ticket is billed twice. Per the billing docs, a ticket fee applies to any ticket with at least one message sent from Gorgias, whether a human, AI Agent or a rule sent it. The automation fee stacks on top when no human touches it within 72 hours. Hand the ticket to a person and you pay the ticket fee only.

The second is that $1.50 is the overage rate, not the rate. Inside your allowance the effective price works out at roughly $0.90 per resolved interaction on annual plans and about $1.00 on Starter, which matches Gorgias's own framing. Cross the line and the same interaction jumps by half on Starter and by two thirds everywhere else.

Bar chart comparing the cost of one extra Gorgias Pro ticket handed to a human, automated in allowance, and automated past allowance
Bar chart comparing the cost of one extra Gorgias Pro ticket handed to a human, automated in allowance, and automated past allowance

There is a backwards consequence here, and it is the strongest argument for routes 2 and 3 that nobody makes out loud. The automated-interaction meter counts AI Agent, Flows, Order Management and Article Recommendations. A reply your own service posts through the API is a billable ticket, not an automated interaction. Build it yourself and you skip the expensive meter entirely. You just pick up an engineering bill instead.

Plug your own numbers in:

What none of the four routes fixes

Underneath all four routes sit the same constraints, and they are the reason I would not call any of them a finished answer.

Your ticket archive is not a knowledge source. Gorgias AI Agent draws on guidance entries (100 per store, 30,000 characters each), help center articles, a public-website sync that takes one page at a time with no subpages and no login, uploaded files, and Shopify data. Macros are an explicit no. Past resolved tickets are not on the list. That is a shame, because the archive is the only place your actual brand voice lives, and it is why so many Gorgias auto reply setups sound like a help center instead of your team.

You cannot dry-run it against your own history. The Playground replays one existing ticket at a time. There is no documented batch or historical simulation anywhere, and actions are off by default in tests but hit real data once enabled. Going live is therefore a judgement call rather than a measurement, which is exactly the moment support leads get nervous. A reviewer on G2 put the configuration burden fairly:

G2

"The AI Agent is powerful, but the training and knowledge base configuration can be complex. There are a lot of rule nuances and automation layers that require careful setup, and the learning curve can be steep when optimizing for more advanced use cases."

None of this means the agent is bad. A 5-star reviewer conceded both sides in one sentence, which is about the fairest summary available:

G2

"While we still have quite a few snags with the AI agent who does give the wrong answers sometimes, it is still faster and more efficient than Zendesk."

And to be fair to the product, actions are the half of it that works well: six Shopify ones covering cancel, address edit, item removal, replacement, free reship and order notes, plus Recharge, Loop and several 3PLs. The order management flows guide covers how they chain together. The published limits are specific enough to plan around, though: cancellations do not propagate to 3PLs, address edits cannot reconcile tax or shipping, and replacements handle one item at a time.

There is one more gate that catches non-Shopify merchants late. AI Agent requires Shopify and is unsupported on BigCommerce, Magento and WooCommerce, even though the helpdesk itself supports them. A long-time paying customer described the pattern precisely:

Capterra

"The AI Agent follows the same pattern, offering full functionality only for Shopify and requiring an awkward email-per-store setup that doesn't fit every business."

And on cost, the most common complaint is the one the two-meter model creates:

G2

"The main frustration with Gorgias is the pricing model, which is based on ticket volume rather than a flat monthly fee. As our order volume grows and customer inquiries increase, the cost scales up quickly in ways that can be difficult to predict and budget for. During peak seasons like the holidays when support volume spikes, the costs can increase significantly in a short period."

Worth saying that the per-ticket model has real defenders too. The same Capterra reviewer who flagged the Shopify ceiling praised charging per ticket rather than per user, because it let everyone in the company use the tool without seat anxiety. Which model is better depends entirely on whether your headcount or your order volume grows faster.

What I would actually do

If you want Claude reading your helpdesk, install the MCP connector today. It costs nothing, takes five minutes, and it is the best analysis tool Gorgias has shipped in a while. Point it at your handovers and your Gorgias reports and let it tell you what is broken.

If you want Claude answering your customers, be honest about what route 3 is. It is a service you now own, with a 5-second timeout upstream, a 12-month event retention window, and an on-call rotation. Teams with a spare backend engineer and unusual requirements should absolutely build it. Most ecommerce teams do not have that engineer spare, and the ones who try usually rediscover why in month two.

If you are earlier than that and still deciding whether to automate at all, start with the Gorgias AI setup guide and the honest verdict in is Gorgias AI worth it.

If what you actually wanted was a model that answers in your voice with your history behind it, none of these four routes is the shortest line to it, which brings me to the obvious bias in this post.

eesel AI for Gorgias

I work on this, so weigh it accordingly, but it is built for exactly the gap described above.

eesel AI connects to Gorgias over OAuth and trains on the three sources the native agent will not touch: your past resolved tickets, your macros, and your help center. That is what makes the replies sound like your team rather than your documentation. It adds Notion, Google Drive, Confluence and Slack on top, and reads live Shopify data for orders, tracking and returns.

The part I would care about most as a buyer is the simulation. Before anything goes to a customer, you run the agent over your past tickets, compare its answers to what your team actually sent, and get a scored gap report. You can run that during the free trial, before you spend anything. Setup is quoted at under 30 minutes, and the connection is to Gorgias itself over OAuth rather than through a store platform, so it is not gated behind Shopify.

The eesel AI for Gorgias integration page, showing setup time, resolution rate and language coverage

Pricing is usage-based at $0.40 per ticket, with no platform fee and no per-seat charge. Against $1.50 per automated interaction past your Gorgias allowance, that gap compounds fast at peak season, which is precisely when it hurts. There is $50 of free usage to start, no card required.

If you are weighing it against the native agent, our Gorgias AI breakdown and the Gorgias alternatives roundup both go deeper, and Try eesel takes about as long as reading them.

Frequently Asked Questions

Is there an official Claude app for Gorgias?
There is no Anthropic listing in the Gorgias App Store, and no Gorgias connector in Anthropic's own directory. The official path runs the other way: Gorgias publishes a first-party MCP server at https://mcp.gorgias.com/mcp that you add inside Claude as a custom connector. If you want a model answering customers instead, that is a job for an AI agent for Gorgias.
Does Gorgias AI Agent already use Claude?
Partly. The Gorgias security FAQ says AI Agent runs on multiple providers including OpenAI, Anthropic and internal models. What you cannot do is choose which one handles your queue, or see which one answered a given ticket. Our Gorgias AI overview covers what the agent does expose.
How much does Claude for Gorgias cost per ticket?
The tokens are the cheap part. A ticket-sized call on Sonnet 5 lands near a cent at current Claude pricing. The meter that actually moves is Gorgias: an automated interaction past your allowance is $1.50 on every plan, on top of the ticket fee. The Gorgias pricing calculator walks the same math.
Can Claude read my past Gorgias tickets?
Through the MCP connector, yes, and that is its best trick. Gorgias AI Agent itself cannot: its knowledge sources are guidance, help center articles, public URLs and uploaded files, with Gorgias macros listed as an explicit no. Tools built for the helpdesk index the ticket archive directly.
Do I need a developer to connect Claude to Gorgias?
Not for the MCP connector, which is roughly a five-minute setup. Yes for anything customer-facing, because you are working around a 5-second timeout on HTTP integrations and writing back through the Gorgias API, which means someone who enjoys reading about API rate limits after midnight.
Is Claude better than Gorgias AI Agent for ecommerce support?
It is the wrong comparison. Claude is a model; Gorgias AI is a product with Shopify actions, handover logic and billing attached. The fair question is Claude plus the harness you build versus that product, which is what our Gorgias alternatives roundup weighs.
Does Gorgias AI Agent work without Shopify?
Not fully. AI Agent requires Shopify and is unsupported on BigCommerce, Magento and WooCommerce, even though the helpdesk supports them. That gate is one of the more common reasons merchants go looking for a Gorgias alternative in the first place.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
Illustration of a Zendesk ticket queue on one side connected to an AI reasoning layer on the other
Zendesk AI

Claude for Zendesk: 4 ways to connect them in 2026 (and what each costs)

Anthropic ships no Zendesk app. Here are the four real routes for Claude in Zendesk, the limits nobody puts on the landing page, and what each one costs.

Rama Adi NugrahaRama Adi NugrahaAug 12, 2026
Banner image for Gorgias AI for Shopify: Features, pricing, and alternatives in 2026
Guides

Gorgias AI for Shopify: Features, pricing, and alternatives in 2026

A comprehensive look at Gorgias AI for Shopify, covering its AI Agent capabilities, Shopify integration depth, pricing structure, and whether it's the right fit for your store.

Stevia PutriStevia PutriMar 16, 2026
Illustration of Claude reading a Help Scout shared inbox through an MCP connector
Helpscout AI

Claude for Help Scout: the official MCP server and its one big limit

Help Scout shipped an official MCP server for Claude, and it is free and generally available. It is also read-only. Here is what that actually means for your inbox.

Rama Adi NugrahaRama Adi NugrahaAug 12, 2026
Illustration of a developer at a laptop watching an agentic coding loop run through code, checks and a bot
Trending

Claude Opus 5 review: near-frontier coding at half the price

A hands-on Claude Opus 5 review: what the benchmarks actually say, the hallucination rate that went up, and whether it belongs on a live support queue.

Alicia Kirana UtomoAlicia Kirana UtomoJul 27, 2026
Illustration of a person weighing a small low-cost AI model against a larger caped flagship model on pedestals
Trending

Claude Opus 5 vs Fable 5: which should you actually run?

Fable 5 costs exactly double Opus 5. I went through both system cards, the docs and the independent benchmarks to work out when that second dollar buys anything.

Rama Adi NugrahaRama Adi NugrahaJul 27, 2026
Illustration comparing a heavyweight reasoning model against a fast balanced model on cost and capability
Trending

Claude Opus 5 vs Sonnet 5: which one should you use?

Claude Opus 5 costs 1.7x Sonnet 5 per token and still finishes some jobs cheaper. Here is the head-to-head on price, benchmarks and real cost per task.

Rama Adi NugrahaRama Adi NugrahaJul 27, 2026
An illustration of a person selecting one of five reasoning effort dials on a Claude Opus 5 style control strip
Trending

Claude Opus 5: what it is and how to actually run it

Claude Opus 5 is not one model, it is five. A plain guide to the specs, the effort dial that decides your bill, and the two API changes that break old code.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieAug 5, 2026
Best AI for Gorgias - illustrated banner with the Gorgias logo
Guides

The 6 best AI tools for Gorgias in 2026 (I tested them all)

I tested the best AI for Gorgias, from its native AI Agent to third-party layers and enterprise platforms. Here's what each one costs and who it's actually for.

Alicia Kirana UtomoAlicia Kirana UtomoJun 11, 2026
Gorgias AI pricing: Complete 2026 cost breakdown and guide
Guides

Gorgias pricing 2026: AI agent costs & plan breakdown

Gorgias repriced in 2026. Here is the current plan ladder, what an automated interaction costs, and the double-charge that decides most invoices.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieApr 8, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free