# Client-side MCP Connection URL: /concepts/model-context-protocol/providers/clientside-mcp-connection ### Client-side Support Client-side MCP integration allows your application to connect to MCP servers that are accessible from the end user's browser, for instance when using a local MCP server. This is useful for: * Local MCP servers running on the user's machine * MCP servers where the user's browser is already authenticated * Private or internal services behind a firewall, that are only visible from the user's browser **Note:** *There is currently no support for authenticated MCP servers when using client-side MCP connections*. To implement client-side MCP support, use the `TamboMcpProvider` component inside your `TamboProvider`: ```tsx import { TamboProvider } from "@tambo-ai/react"; import { TamboMcpProvider, MCPTransport } from "@tambo-ai/react/mcp"; function MyApp() { return ( {/* Your application components */} ); } ``` The `TamboMcpProvider` establishes connections to the specified MCP servers and makes their tools available to Tambo agents in your application. ## Control Flow