
Quick Summary
- The Model Context Protocol (MCP) lets both Google AI Studio and Claude AI pull live data from external tools instead of relying only on training data.
- Claude connects via a built-in MCP connector, pointing to a remote server's address with an authorisation token.
- Google AI Studio connects through a similar mechanism in the Gemini API.
- Both currently require the external server to be hosted online and reachable over the web, rather than running locally on someone's own machine.
- Set this up correctly, and your AI assistant can query live databases, infrastructure, or business systems on demand.
- Get it wrong, particularly around authentication and tool permissions, and you open a real security gap.
- This guide walks through both integrations, the risks, and how to test before rolling anything into production.
- If you have tried to get Claude AI or Google AI Studio to answer questions using your company's live data, you have likely hit the same wall.
- Large language models are trained on a fixed dataset.
- They do not know what happened in your CRM this morning or what is sitting in your BigQuery warehouse right now.
- The Model Context Protocol was built to close that gap.
- Anthropic introduced it in late 2024 as an open standard, and Google has since added native support across Gemini and several Cloud services.
- This guide explains, in practical terms, how to connect both Claude AI and Google AI Studio to external MCP servers.
- We cover the setup process, the risks worth flagging to your security team, and how adoption looks in 2026 based on published survey data.
What Is the Model Context Protocol and Why Does It Matter?
MCP is an open standard that lets AI models call external tools and retrieve live data through a consistent interface, rather than each vendor building its own custom integration. It works like a universal adapter between an AI assistant and whatever system holds the information it needs, whether that is a database, a file store, or an API.
Why Was MCP Created in the First Place?
Before MCP, every AI vendor needed a bespoke integration for every data source, which meant duplicated engineering effort across the industry. Anthropic released MCP as an open protocol so any AI system, not just Claude, could connect to any compliant server using one shared specification instead of dozens of proprietary ones.
The protocol defines three building blocks: tools (functions the model can call), resources (data the model can read), and prompts (reusable templates). Most current implementations, including Claude's MCP connector and Google's Interactions API, focus on tool calls specifically.
How Does MCP Differ From Standard API Integrations?
A standard API integration is built once, for one specific system, by one team. MCP standardises the connection layer itself, so a single MCP server built for a database, for example, can be reused across Claude, Gemini, and any other MCP-compatible model without rewriting the integration each time.
How Do You Connect Claude AI to an MCP Server?
Claude connects to remote MCP servers through a built-in MCP connector, without needing a separate client application. Your developer defines the server's web address and authentication details once, then enables the specific tools it should be allowed to use.
What Does the Basic Setup Involve?
Connecting Claude to a remote MCP server means providing a small set of connection details: the server's web address, a unique name for it, and an authorisation token if the server requires one. Anthropic's API then handles the rest, discovering which tools the server offers and making them available to Claude during a conversation.
This is set up by whoever manages your Claude integration, typically a developer, working from Anthropic's official documentation. As the project manager or client, what matters is knowing that the connection is defined once and then reused, so it does not need to be rebuilt every time you want Claude to reach that data source.
There are 2 methods to connect to a MCP within Claude. The first one is connect via endpoint.
{
"mcpServers": {
"server-name": {
"command": "your-command",
"args": [
"arg1",
"arg2"
],
"env": {
"API_KEY": "YOUR_API_KEY",
"ENDPOINT_URL": "https://api.example.com"
}
}
}
}
To connect using an endpoint, you can configure your connection details as follows:
{
"mcpServers": {
"my-remote-server": {
"type": "sse",
"url": "https://mcp.your-domain.com/sse"
}
}
}
This configuration directs Claude's connector to establish a Server-Sent Events (SSE) connection with the specified remote server URL.
How Do You Restrict Which Tools Claude Can Use?
Once a server is connected, you can choose exactly which of its tools Claude is allowed to use, rather than switching everything on by default. For example, on a calendar server you might allow Claude to search and view events while explicitly blocking it from deleting them or sharing the calendar publicly.
This allowlisting step is what turns MCP from a blanket connection into a controlled one, and it should be treated as a required part of setup rather than an optional extra.
What Are the Current Limitations?
Claude's MCP connector currently supports tool calls only, not the full resources or prompts parts of the spec, and it requires servers to be exposed over Streamable HTTP or SSE rather than local STDIO. It is also not eligible for Zero Data Retention agreements, so anything exchanged with the server follows Anthropic's standard retention policy.
How Do You Connect Google AI Studio to an MCP Server?
Google AI Studio connects to MCP servers through a similar built-in mechanism in the Gemini API, pointing to the server's remote address. The model then automatically discovers and calls the tools that the server exposes, based on the user's request.
What Does a Basic Gemini MCP Connection Involve?
The setup mirrors Claude's structure closely, which is one of the benefits of a shared protocol. A developer defines the MCP server's name and web address within the Gemini API configuration, and Gemini then automatically discovers and calls the tools that server offers based on what the user asks.
As with Claude, you can restrict which specific functions on that server the model is permitted to call. Treating this restriction as the default setting, rather than something added later, is the safer approach for any production use.
Which Google Services Already Support MCP Natively?
As of December 2025, Google rolled out fully managed remote MCP servers for Google Maps, BigQuery, Compute Engine, and Google Kubernetes Engine, with Cloud Run, Cloud Storage, Spanner, and several other services planned for rollout shortly after. This means you can query BigQuery datasets or manage GKE clusters from Google AI Studio without building a custom connector yourself.
David Soria Parra, MCP co-creator at Anthropic, noted that Google's breadth of support "combined with their close collaboration on the specification, will help more developers build agentic AI applications" (Google Cloud, 2025).
Does Google AI Studio Support Local MCP Servers?
Not directly. Anything you want Google AI Studio to reach needs to be hosted somewhere publicly accessible online, rather than running only on a local machine. If your data sits behind a company firewall, your development team will need to expose it securely first, typically through a gateway.
What Are the Main Risks of Connecting AI Models to External Protocols?
The biggest risks are over-permissioned tools, unverified third-party servers, and indirect prompt injection through data the model reads back from a connected source. Because MCP gives a model the ability to take real actions, a misconfigured server can let it delete records, leak credentials, or execute commands it was never meant to run.
How Common Are Security Concerns in Practice?
Security concerns and requirements are the leading barrier to MCP adoption cited by enterprise teams, ahead of implementation cost and legacy integration complexity, according to Stacklok's State of MCP in Software 2026 survey. That ranking alone tells you this is not a theoretical worry among practitioners already running MCP in production.
How Should You Mitigate These Risks?
Start every integration with an explicit allowlist rather than enabling all tools by default, and treat any server you did not build yourself as untrusted until reviewed. Google's own rollout leans on Cloud IAM, audit logging, and its Model Armor product specifically to defend against indirect prompt injection, which is a reasonable baseline to mirror even outside Google Cloud.
How Do You Test an MCP Connection Before Going Live?
Test with the official MCP Inspector tool against a non-production server first, confirming that only the tools you intended to expose are visible and callable. This catches misconfigured allowlists and broken authentication before either model touches real data.
What Tools Are Available for Testing?
Anthropic provides a free tool called the MCP Inspector, which lets a developer manually exercise a server's tools and inspect its responses before wiring it into Claude or Gemini. Run this against a staging version of your server, not production, and check the tool list matches what you expect before finalising which tools are allowed through.
Is MCP Actually Being Used in Production Yet?
Yes, but adoption is still maturing rather than universal. Stacklok's 2026 survey found 41% of respondents across all industries have some form of MCP in production, split between 29% limited and 12% broad deployment, with another 30% in active pilots.
What Do the Wider Ecosystem Numbers Look Like?
By May 2026, the official MCP registry listed over 9,600 servers, GitHub carried nearly 16,000 repositories tagged with the mcp-server topic, and Anthropic reported more than 97 million monthly SDK downloads as of December 2025. Those figures point to a genuinely active developer ecosystem, even if full enterprise production rollout is still a work in progress for most teams.
If your team is weighing whether to build this in-house or bring in outside help to design the integration and permissioning correctly from day one, that is exactly the kind of work covered under AI automation services, where the setup, testing, and governance are handled end to end.
Conclusion
Connecting Claude AI and Google AI Studio to external MCP servers is genuinely useful when done with the same care you would apply to any system with write access to your data. Both platforms now support the protocol natively; the setup itself is straightforward for a development team, and Google's growing list of managed servers removes a lot of the integration work that used to sit with individual teams.
The part that still needs deliberate planning is permissioning: what the model can call, what data it can see, and how you would know if something went wrong. Test on staging first, allowlist tools explicitly, and treat this as infrastructure, not a quick plugin.
If you want a second pair of eyes on your MCP setup before it goes anywhere near production data, get in touch with our team, and we will walk through the permissioning and testing plan with you.
FAQ
What is Google AI Studio?
Google AI Studio is Google’s browser-based tool for building and testing applications with Gemini models, including prompt design, function calling, and now native connections to remote MCP servers through the Interactions API.
What is Claude AI?
Claude AI is Anthropic’s family of large language models, accessible through claude.ai, the Messages API, and Claude Code, with built-in support for connecting to external MCP servers via the MCP connector.
What is the Model Context Protocol used for?
MCP is used to let AI models call external tools and pull live data from systems like databases, cloud infrastructure, and business applications, using one shared standard instead of a custom integration for every model and data source combination.
Can I connect a local MCP server to Claude or Google AI Studio?
Not directly. Both platforms currently require the external server to be hosted online and publicly reachable. A server running only on a local machine needs to be exposed through a gateway first before either platform can connect to it.
Is MCP safe to use with production data?
It can be, provided you allowlist specific tools rather than enabling everything by default, use verified servers, and apply access controls similar to Google’s use of Cloud IAM, audit logging, and prompt injection defences. Security concerns remain the top-cited barrier to adoption, so this needs deliberate governance rather than a default configuration.
References
- Google Cloud, "Announcing official MCP support for Google services," December 2025. https://cloud.google.com/blog/products/ai-machine-learning/announcing-official-mcp-support-for-google-services
- Anthropic, "MCP connector," Claude Platform Docs. https://platform.claude.com/docs/en/agents-and-tools/mcp-connector
- Google AI for Developers, "Function calling using the Gemini API." https://ai.google.dev/gemini-api/docs/function-calling
- Stacklok, "State of MCP in Software 2026" survey, cited via Digital Applied. https://www.digitalapplied.com/blog/mcp-adoption-statistics-2026-model-context-protocol
- Anthropic, "Introducing the Model Context Protocol," November 2024. https://www.anthropic.com/news/model-context-protocol
Let's grow your reach together
What we do here is to help our customers (you) get the result you want at a tiny fraction of your business revenue.
Explore Yaeris




