AWS describes how it built a Model Context Protocol (MCP) bridge to let an AI agent hosted on Amazon Bedrock AgentCore access MCP tools running locally on a user’s machine. The challenge addressed is that AgentCore agents operate in the cloud, while users’ tools and files typically reside on their laptops.
The approach tunnels signed messages over an existing WebSocket connection, routing them through a browser extension and Chrome native messaging so the cloud agent can call local MCP servers. According to the post, the setup avoids opening ports or configuring a VPN.
Why it matters
Bridging cloud-hosted agents to local tools and files is a practical requirement for many agent workflows. The described method aims to keep this connection secure while avoiding common networking friction such as open ports and VPNs.
Who should care
Developers building agents on Amazon Bedrock AgentCore, and teams working with MCP-based tooling, may find the described architecture relevant when they need cloud agents to interact with resources on local machines.