Vtiger AI: What Calculus AI Costs and What the API Allows
If you searched “Vtiger AI,” you are almost certainly deciding whether to click the upgrade button. Vtiger does ship real AI, branded Calculus AI, and unlike a lot of CRM AI it is not vapor. It is also not included in your plan by default, and it is metered in two separate ways.
Here is what each piece does, what it costs, and — the part most write-ups skip — what Vtiger’s API and webhooks let you build on top, which turns out to be the more interesting half.
Calculus AI is an add-on, and the tokens are billed separately
This is the fact to get straight before anything else. Vtiger’s own knowledge base is blunt about it: “Yes, you have to pay for Calculus AI and the GPT separately.”
Two meters, then:
The Calculus AI add-on runs about $12 per user/month, and it applies across your account rather than to the one rep who wanted it. Budget it as a headcount multiplier, not a single seat.
GPT tokens on top. Vtiger charges generative features “based on tokens used in the prompt and response,” with the helpful conversion that “1000 tokens roughly equate to 750 words.” A default allowance comes with the add-on and you buy more through a Booster for GPT tokens. Worth noting: Vtiger’s own FAQ pages quote different default allowances on different URLs, so confirm your actual allocation in-account before you plan volume around it. Vtiger also notes “some models are priced higher than others.”
The split between the two meters matters more than the prices. Vtiger draws a clear line: the predictive features — Deal Scoring, deal recommendations, Conversational Analysis for sales coaching, Sentiment Analysis, and Deal/Contact summaries — do not consume tokens. The generative ones do: email drafting, case replies, rephrasing text, conversation summaries.
So the scoring and analytics half of Calculus AI is a fixed cost. The writing half is consumption, and consumption is where AI budgets quietly go sideways.
The One AI edition versus bolting the add-on on
Vtiger’s ladder runs One Pilot (free), One Growth at $12, One Professional at $30, One Enterprise at $42, and One AI at $50 per user/month on annual billing. Vtiger describes the top tier plainly: “Vtiger One AI Edition is Vtiger’s One Enterprise edition with built-in artificial intelligence (AI) features powered by Calculus AI.”
Run that arithmetic before you buy. Enterprise plus the $12 add-on lands above the $50 One AI price, so if you were headed to Enterprise anyway, One AI is the cheaper route to the same place. If you are on Growth or Professional, you are adding $12 per user to your current tier instead. Either way the GPT tokens are still their own line item.
Vtiger also surfaces an Agent Builder for no-code AI agents alongside the chatbot builder and Prompt Builder. It is real and it is in the product navigation, but the public documentation on it is thin compared to the older Calculus features — treat it as something to test in trial rather than something to buy on the strength of the marketing page.
Where Calculus AI stops being useful to you
Calculus AI is oriented around records you are already looking at. It scores the deal on your screen, drafts the reply to the email in front of you, summarizes the call you just had, flags the best time to contact someone.
What it does not do is act on your behalf when you are not there. Nothing in Calculus AI says: this deal has had no activity in 14 days and it is worth more than anything else in the stage — chase it. Nothing says: a case just came in from an account with an open renewal, escalate it before the standard queue does. The scoring produces a number; a human still has to notice the number and act.
For a small sales team, that noticing is the work that quietly does not happen.
There is no official Vtiger connector for ChatGPT or Claude
Be careful here, because the search results are misleading. You will find “Vtiger MCP server” pages from StackOne, Activepieces, and Pipedream. Those are third-party wrappers built on Vtiger’s public REST API — not something Vtiger publishes, and not entries in Anthropic’s or OpenAI’s official connector directories. Vtiger itself does not ship an MCP server, and neither ChatGPT nor Claude lists a native Vtiger connector.
That is not a dead end, because Vtiger’s own API is unusually open for a CRM at this price. But it does mean every path runs through credentials you generate yourself.
These assistants can run on a schedule now — ChatGPT Scheduled Tasks and Claude Cowork both do unattended work on a timer. What none of them do is fire on an event: nothing starts because a record changed, a message landed, or a deadline passed. The schedule is the trigger, and the gap between "every hour" and "the moment it happens" is where the work falls through.
For a pipeline, that ceiling is exactly the wrong shape. “Every morning, summarize deals that went stale” is fine. “The moment this deal crosses $50k, alert the founder” is not — unless you use the webhook path below.
The API is genuinely self-serve, with one hard catch
This is where Vtiger’s open-source lineage pays off. Unlike vertical SaaS that hides its API behind a partner program, Vtiger documents its REST API publicly at vtap.vtiger.com and hands you the credential in the UI.
Authentication is HTTP Basic, using your CRM username and an Access Key. Vtiger defines the Access Key as “a unique security token generated automatically when a user is created,” and the docs are explicit about where it lives: “You can find Access Key under My Preferences in the CRM.” Open the user menu at top right, scroll to User Advanced Options, copy the field. No application form, no five-day review, no sales call. Your endpoint is https://CRM_URL/restapi/v1/vtiger/default.
The catch is the plan. API access is metered by edition, and the free tier is not a soft limit — it is zero:
- One Pilot (free): 0 API calls. Not a small allowance. None.
- One Growth: 24,000/day, 1,000/hour, 30/minute, 200 per user
- One Professional: 72,000/day, 2,500/hour, 60/minute, 600 per user
- One Enterprise: 120,000/day, 4,000/hour, 90/minute, 1,000 per user
So the honest verdict: any paid Vtiger plan gives you real, self-serve API access in about thirty seconds; the free plan gives you none. Growth at $12/user is the entry point for automating anything. Note also that bulk retrievals of up to 200 records count as a single request, so read-heavy workflows are cheaper against the quota than the per-minute number suggests.
Once you have your username and Access Key, you paste them into Carly at carlyassistant.com/integrations as a bring-your-own-key connection. Vtiger isn’t a prebuilt Carly connector, and BYO-key is the supported path for exactly this case.
Workflow webhooks are the piece that changes what’s possible
The REST API lets something read and write Vtiger on a schedule. Webhooks let Vtiger tell you the instant something happens, and Vtiger builds them into native workflows rather than selling them separately.
The path is Settings → Automation → Workflows: create a workflow, set your conditions on the module, and add a webhook action with a destination URL, JSON or form-data payload, optional authentication, and whatever parameters you want to pass. Vtiger also supports incoming webhooks so external systems can create, update, or delete CRM records without you writing an integration.
That outbound webhook is a real event trigger — the capability ChatGPT’s scheduled tasks and Claude’s Cowork tasks both lack. A record changes, Vtiger fires, and something happens in the same minute.
Concretely, once your workflow conditions are set: a deal crossing a stage threshold fires a webhook, and a workflow pulls the account’s recent email and case history, drafts the follow-up in the right register for that stage, and puts it in front of the owner before the day moves on. A case created against an account with an open renewal fires a webhook and jumps the queue with context attached. A contact going quiet past your defined window fires a scheduled sweep instead, since silence is an absence of events.
In Carly, the trigger-and-branch scaffolding is the free, unlimited Zapier-style workflow layer; the AI agents that read the history and write the outreach start at $35/month. The AI CRM tools roundup covers how this compares across CRMs.
What to wire up first
Ordered by how quickly they pay back for a small team running Vtiger:
- A stalled-deal sweep on a schedule, ranked by value rather than by age, delivered as a short list instead of a dashboard nobody opens.
- A webhook on stage changes in your top revenue band, so the deals that matter get a human within the hour.
- Inbox triage on the shared sales address, separating replies that need an answer from receipts and notifications.
- A pre-meeting brief assembled from the Vtiger record plus your calendar, sent before the call rather than filed after it.
The last two need no Vtiger credentials at all and work the day you start. The first two need any paid plan and about a minute in My Preferences.
FAQ
What is Calculus AI in Vtiger? Calculus AI is Vtiger’s native AI feature set. It covers predictive features that don’t consume tokens — deal scoring, deal recommendations, conversational analysis for sales coaching, sentiment analysis, and deal and contact summaries — plus generative features like email drafting, case replies, and conversation summaries that are billed by token usage.
Is Calculus AI free with Vtiger? No. It is a paid add-on at roughly $12 per user/month, and Vtiger states that you pay for Calculus AI and the GPT tokens separately. The One AI edition at $50/user/month is Vtiger’s One Enterprise edition with Calculus AI built in.
Does Vtiger have a REST API? Yes, and it’s self-serve. Authentication is HTTP Basic using your CRM username and an Access Key found under My Preferences in the CRM, documented at vtap.vtiger.com. API call limits vary by edition — One Growth allows 24,000 calls/day, One Professional 72,000, and One Enterprise 120,000.
Can I use the Vtiger API on the free plan? No. The One Pilot free edition has an API limit of zero calls per day. You need One Growth or above to make any API request at all.
Can ChatGPT or Claude connect to Vtiger directly? No. Neither ships a native Vtiger connector, and Vtiger does not publish an official MCP server. The “Vtiger MCP” listings you’ll find are third-party wrappers around Vtiger’s public REST API.
Does Vtiger support webhooks? Yes. Outgoing webhooks are a native workflow action configured under Settings → Automation → Workflows, sending JSON or form data to a URL you specify when your conditions match. Vtiger also supports incoming webhooks for external systems to write into the CRM.
Ready to automate your busywork?
Carly schedules, researches, and briefs you—so you can focus on what matters.
See what people say
"Before Carly, I relied on a Calendly link, but the whole process felt impersonal and not very professional. Carly changed that by handling all the back-and-forth, so I'm no longer stuck in endless email threads trying to line up schedules.
Now Carly reaches out to candidates, shares my real-time availability, lets them pick a slot, then sends a Zoom link and drops it straight into my calendar. She sends reminders to both of us before each call, which has significantly reduced no-shows and last-minute confusion.
On top of scheduling, Carly acts like a full executive assistant, sending me my schedule the night before so I can prepare for each call. It reminds me of the old x.ai assistant, but Carly is noticeably smarter, faster, and better suited to my healthcare recruitment business."


