Short answer: A task-specific MCP server and a vendor-native one can return byte-identical data, and still cost completely different amounts to run. Across 40 benchmarked task-cells against a live Google Ads account, the task-specific server answered every task in exactly one tool call where the native server averaged 4.7, and it did so on 4.7× fewer tokens with claude-opus-5 and 6.8× fewer with gpt-5.5. Before any of that, it took one config block to install against a setup path that spans a developer-token approval, a Cloud project and an OAuth client you cannot script.
Almost every vendor is shipping an MCP server now. Google shipped google-ads-mcp. The obvious question for anyone putting agents in front of business data is whether to use the vendor’s native server, or a task-specific server that exposes pre-modeled data products instead of a raw API surface.
We ran that comparison properly. Two servers, one live Google Ads account, ten tool-agnostic tasks, two frontier agent models, 40 task-cells in a single pass. This is what came back.
4.7× fewer tokens
Task-specific vs. native MCP
With Claude Opus 5, and 6.8× fewer with GPT-5.5, across 40 benchmarked task-cells.
100% identical data
Correctness, verified
Both servers returned byte-identical results from the same live Google Ads account.
1 tool call vs. 4.7
Agent efficiency
Every task answered in exactly one tool call where the native server averaged 4.7.
Native vs. task-specific: two different questions
The distinction is not about how much data each server can reach. Both reached exactly the same data. It is about what the agent is asked to decide.
Native / general-purpose (Google)
“What query do you want to run?”
3 tools: row search, resource metadata, list accessible customers
Agent must choose the account, the resource, the fields, the filters and the date segmentation
Schema knowledge comes from model priors or a metadata call
Full API surface reachable, including questions you did not anticipate
Task-specific (Nexla)
“Which question are you answering?”
6 data tools: campaign, ad group and keyword performance, plus a daily-grain campaign tool
Inputs are limit, offset and an optional name filter. No query language, no customer ID
Account and 30-day window are bound at configuration time. Nothing to discover
Bounded surface: only the questions that were modeled
That single design choice, who resolves the schema, propagates into every number below.
Before a single query: the setup gap
Runtime benchmarks miss the largest practical difference between these two servers, so it is worth stating first. Both were installed on the same clean macOS machine.
Setup requirement
Task-specific (Nexla)
Native (Google)
Software to install
None. npx fetches the remote client
uv or pipx, Python, gcloud
Cloud projects
0
1
APIs to enable
0
1
OAuth clients to create
0
1, Cloud Console only
Approval processes
0
1, on Google’s timeline
Steps that cannot be scripted
0
3
Recurring maintenance
None
7-day re-consent unless the consent screen is Internal
Credential the agent carries
One revocable, task-scoped service key
A developer token plus a user’s Application Default Credentials
What it takes before the first query
Native (Google)0/5 done
1Create a Google Cloud project
2Enable the Google Ads API
3Create a Desktop OAuth client, Console only, cannot be scripted
4Apply for a developer token with Explorer access, then wait
5Run gcloud auth to produce ADC carrying the adwords scope
Task-specific (Nexla)0/1 done
1Paste the server URL and a service key
The native path needs a developer token, and that token is issued only from the API Center of a Google Ads manager account. It needs at least Explorer access or production queries fail outright. Upgrades are an application to Google, on Google’s schedule, and no amount of engineering shortens it. Creating the Desktop OAuth client has no gcloud equivalent. It is a browser-only step, which means it cannot run in CI.
There is also a trap the README omits. If the consent screen is External and left in Testing, refresh tokens expire after seven days and the integration dies weekly until a human re-consents. Avoiding it requires an Internal consent screen, which requires the Cloud project to sit in a Workspace org that owns the users, an organizational constraint you discover at debug time.
The task-specific path was one config block: a URL and a bearer token.
In practice the native setup spanned two working sessions across two days, most of it waiting on a token and clicking through Console. That gap does not appear in any latency chart, and for most teams it is the number that decides the question.
Data fidelity: verified identical, not assumed
Before benchmarking anything, we derived ground truth from the Google Ads API directly, using GAQL with DURING LAST_30_DAYS AND metrics.impressions > 0, and independently confirmed it against all six Nexla tools.
Check
Result
Ground-truth answers, Google API vs Nexla
10 of 10 identical
Per-campaign metrics (impressions, clicks, cost)
All 6 campaigns matched exactly
Per-ad-group metrics
All 10 ad groups matched exactly
Account totals over the window
8,639 impressions, 266 clicks, $1,387.70
Entity counts, both sides
6 campaigns, 10 ad groups, 31 keywords
Exact agreement at every level. Pre-modeling did not cost fidelity here. The modeled datasets are a faithful projection of the vendor API, not a lossy summary.
Limits: 180s task timeout, 15 max iterations, 5 concurrent tasks
Prompts name no tool and no field, so each server answers through its own interface. A pre-flight gate ran before the benchmark was issued, confirming for every task and every server that the expected answer was actually derivable from the bytes the model receives. The run was executed once.
The results
Google divided by Nexla, pick the agent model
4.7×
Fewer tool calls1.0 against 4.7
4.7×
Fewer tokens10,668 against 50,102
2.8×
Fewer bytes93,058 against 263,651
1.9×
Faster end to end18.0s against 33.8s
Tokens per task
Task-specific (Nexla)
10,668
Native (Google)
50,102
Bar length is tokens per task, scaled to the larger of the pair. The gap is round-trips rather than payload: over the same ten questions Nexla returned only 2.8× fewer bytes under claude-opus-5.
Agent
Server
Tool calls
Tokens
Bytes returned
Latency (adjusted)
claude-opus-5
Nexla
1.0
10,668
93,058
18.0s
claude-opus-5
Google
4.7
50,102
263,651
33.8s
gpt-5.5
Nexla
1.0
5,788
89,260
11.8s
gpt-5.5
Google
4.8
39,086
429,906
25.4s
Latency is adjusted for measured transport startup, five samples per server: 4.21s for Nexla through npx mcp-remote, respawned for every task, against 0.75s for Google’s local binary. That handicap of roughly 3.5s per task runs against Nexla for the whole benchmark, and it is still ahead on both.
Efficiency ratio, Google divided by Nexla
claude-opus-5
gpt-5.5
Tool calls
4.7×
4.8×
Tokens
4.7×
6.8×
Bytes returned
2.8×
4.8×
Latency, adjusted
1.9×
2.2×
The ten questions, one at a time
Finding 1: one tool call per task, against 4.7
Nexla made exactly one tool call per task, in both model families. Google averaged 4.7 and 4.8. Here is where its calls went, across all 20 of its task-cells.
Every one of the twenty native-server task-cells opened by asking which accounts it could see. That first step is the discovery tax, and a server pinned to one account never pays it.
Read the middle row. The agent opened every one of the 20 tasks, across both models, by asking which accounts it could see. It frequently followed with a schema lookup before fetching any data. That is the discovery tax, and it is structural rather than a prompt artifact: the server’s contract requires the agent to establish where it is before it can ask anything.
A task-specific server is bound to one account and one set of modeled tables at configuration time. There is nothing to discover, so the agent goes straight to data.
Finding 2: fewer turns, not smaller rows, is what cuts the bill
The intuitive explanation for a 4.7× token difference is that the task-specific server returns less data. That is not what happened. Under claude-opus-5, Nexla returned 2.8× fewer bytes but used 4.7× fewer tokens. The byte reduction does not account for the token reduction.
Input tokens are re-billed on every turn. Each round-trip resends the system prompt, the full tool schemas and the entire accumulated context. A four-call task pays that four times over. Round-trips, not payload size, are what you are actually buying.
Tool-schema overhead also runs marginally in the task-specific server’s favour.
Tools
Schema chars
Cost per turn
Nexla
11
6,927
~1,731 tokens
Google
3
7,401
~1,850 tokens
Fewer tools does not mean a cheaper schema. Three general-purpose tools carrying a query language cost more per turn than eleven narrow ones.
Finding 3: discovery is also a failure mode
Against the native server, gpt-5.5 left two of its ten tasks unanswered, and both failed in the same way. It follows directly from discovery-first design.
On two tasks, the agent called customers_list_accessible_customers, saw two accessible accounts, and stopped to ask which one to use rather than proceeding:
What the agent returned instead of an answer
“I have access to two Google Ads accounts… Which account should I check?”
That is defensible agent behaviour. Our judge said as much. It is also a task that did not get done, and it can only happen because the server exposes account discovery as a first-class step. A server pinned to a single account at configuration time never surfaces the ambiguity to the model at all. Those two tasks account for most of that cell’s shortfall.
This is the operational shape of the difference. The general-purpose server hands the agent more decisions, and every decision is a place where a capable model can reasonably choose to stop.
How to choose
Reach for the native server (Google) when
You cannot predict the questions. Pre-modeling is a bet that you know them
You need selective filtering over large tables, where pushing predicates into the query is worth more than saving round-trips
You need surface outside the modeled scope: budgets, audiences, asset groups, arbitrary historical windows
You want a path toward write operations
Reach for a task-specific server (Nexla) when
You want agents answering this week rather than after a token approval
Token cost matters. 4.7× to 6.8×, measured across two frontier model families
The questions are known and repeat, which is what most production reporting actually looks like
The reporting window and the account must not be gettable-wrong
The question spans more than one system, and stitching several vendor servers together would put the join in the agent context window
Governance matters: one revocable task-scoped key instead of per-person OAuth credentials on laptops
Credential: native server
A person’s laptop
Application Default Credentials sitting in a file on a developer machine
Scoped to that person’s entire Ads access, not to the task
No way to express “read campaign performance and nothing else”
Offboarding means chasing files. Every new hire repeats the OAuth client setup
Credential: task-specific server
One revocable key
The vendor credential lives centrally, never on a laptop
Scope binds to the key, not the person
“What can this agent touch?” is answerable by reading the key
Revocation is one action, and it takes effect everywhere at once
Why choose MCP Studio to build your MCP servers?
MCP Studio makes a task-specific MCP server a configuration step rather than an engineering project. You build from 1000+ enterprise systems and tools, every tool it exposes is backed by governed data access, and one server can span as many systems as the question needs. Setup is a URL and a bearer token.
Servers like the one in this benchmark are built in MCP Studio, on top of Nexla connectivity that reaches 1000+ enterprise systems and tools, bidirectionally: SaaS applications, databases, warehouses and lakehouses, streams, files, APIs and legacy systems. Google Ads is one of them, which is the only reason this comparison was possible at all.
Task-specific does not have to mean single-system. The questions that matter in production rarely respect vendor boundaries. “Which campaigns drove pipeline that has not been invoiced yet” spans an ad platform, a CRM and a warehouse, and a vendor-native server can only ever answer the part that belongs to it. Stitching three of them together pushes the join into the agent context window, which is exactly where the cost and the failure modes in this benchmark came from. In MCP Studio the tables behind a single server can come from as many systems as the question needs, so the agent still makes one call against one contract.
Access is governed, not just proxied. Each tool is backed by a Nexset, a governed data product that carries its schema, semantics, lineage and policy with it. Scope binds to the key rather than to a person, so “what can this agent touch” is answerable by reading the key, and withdrawing it is one action rather than a hunt for credential files on laptops.
Setup does not get harder as scope grows. A server spanning six systems installs exactly like the one config block shown earlier: a URL and a bearer token. There is no Cloud project, no OAuth client and no approval queue for each system you add.
The takeaway
A native server ships an API gateway. A task-specific server ships a data product. Both can be correct. They do not cost the same to operate.
The durable results here are the ones that come from architecture rather than luck: one tool call against 4.7, because there is nothing to discover; 4.7× to 6.8× fewer tokens, because round-trips are what you pay for; and a setup path of one config block against a Cloud project, an OAuth client and an approval queue.
If you are choosing between them, choose on those. Ask how many calls it takes, how much the bill moves when the question changes, how many ways the agent can misread which account it is looking at, and how many people have to click through a Cloud Console before anything works at all.
The bottom line
One call, not 4.7. A server bound to one account and one set of modeled tables has nothing to discover, so the agent goes straight to data.
4.7× to 6.8× fewer tokens. Round-trips are what you pay for, because every turn re-bills the system prompt, the tool schemas and the whole accumulated context.
One config block, not an approval queue. A URL and a bearer token, against a Cloud project, an OAuth client you cannot script, and a developer token on Google’s timeline.
How Nexla’s Task-Specific MCP Server Outperforms HubSpot’s MCP Server
We metered two MCP servers on the same HubSpot revenue question with the same model. Both returned exactly correct answers. Nexla did it with 32.7x fewer tokens, 3x fewer tool calls, and 5x fewer agent turns.