groundy
developer tools

How Vercel Connect Brokers Scoped Agent Access to Internal Services

Vercel Connect brokers agent access to private databases and APIs through a managed layer, removing secrets from the runtime but shifting the trust boundary to Vercel.

8 min···3 sources ↓

Vercel Connect is positioned as a connection layer that brokers access to private databases and internal APIs, fronting the authenticated call so the agent references a resource by name instead of carrying a standing secret. It is part of Eve, the agent framework Vercel open-sourced in June 2026, and sits alongside the AI Gateway, Sandboxes, and Workflows as one of Vercel’s AI primitives. The public launch material does not describe Connect’s internal mechanism.

What does Vercel Connect actually proxy between agents and internal services?

Vercel Connect fronts the authentication and the network call between an agent and a private resource, replacing the standing credential the runtime would otherwise hold. No long-lived secret is left in the runtime to be exfiltrated or logged. How Connect issues or scopes the credentials it brokers is not described in the public material.

In Eve, Connect sits alongside the framework’s other primitives (durable execution, sandboxed compute, human-in-the-loop approvals, subagents, and evaluations) as the layer that handles authenticated access to private resources. The launch material names Connect as one of several Vercel AI primitives, alongside the AI Gateway, Sandboxes, and Workflows (Eve), but does not detail its internal brokering behavior.

How does a managed connection layer replace VPC peering and static tokens?

The broker replaces VPC peering and static service tokens by holding the credential in Vercel’s layer, so the agent references a connection by name rather than carrying a secret it can read.

The pre-Connect options for a private database or internal API are familiar: bake a long-lived service token into an environment variable, stand up VPC peering or a private link so the function can reach the resource, or front the resource with a gateway that holds the credential. Each puts the secret somewhere the agent runtime can read it, and each makes rotation a coordination problem across every function and deploy that holds the token. Connect’s pattern is to remove the secret from the runtime. The agent calls a connection by name; Vercel resolves the target, attaches the credential, and returns the data. The function code and the model context reference a logical handle, not a string that lets an attacker pivot from one compromised function to the data store behind it. A credential the agent never holds is a credential the agent cannot exfiltrate, cannot log into an error trace, and cannot echo into a tool-call description.

The commercial framing wraps this into a broader “Agentic Infrastructure” pitch bundling Durable Orchestration, Sandboxed Environments, an AI Model Gateway, and Fluid Compute, and it ships a vercel-plugin CLI via npx plugins add vercel/vercel-plugin.

Does brokered access actually shrink the blast radius of a leaked credential?

The honest answer depends on a question the public material does not settle: whether a credential routed through Vercel Connect is handled any differently, at rest and in transit, than an ordinary environment variable.

The broker pattern is sound in principle. Moving the secret off the function runtime removes one common exfiltration path, and a credential that lives in one managed place can be rotated or revoked in a single operation instead of across a fleet of function configs. But “narrower blast radius” is a claim about the implementation, not the architecture, and no security model for Connect is available in the public material as of June 26, 2026 to audit against. The limit is also structural. “One place” is now Vercel, and a single compromised component in that path can expose every connection the broker fronts. Concentration is the feature and the risk in the same move: the blast radius shrinks per-function and grows per-broker at the same time.

What does the April 2026 Vercel breach mean for the trust boundary?

The breach is the case for verifying where Connect credentials live, because the incident turned on precisely the distinction between ordinary environment variables and a protected sensitive tier.

In April 2026, Vercel disclosed a breach in which an attacker reached some Vercel environments and environment variables that were not marked as sensitive, through a compromised employee Google Workspace account traced to Context.ai (The Hacker News). The detail that matters for Connect is the qualifier: the exposed variables were the ones not marked “sensitive,” which implies Vercel’s environment-variable model already distinguishes a protected tier, and that tier was not the one reported as exposed in this incident.

That distinction is the whole argument, and also the gap. If Connect routes its credentials through the sensitive tier or a layer with comparable handling, the April incident is evidence the protected path holds under a real intrusion. If Connect credentials live alongside ordinary environment variables, the breach is a warning rather than reassurance. Vercel’s public statements establish that a sensitive tier exists; they do not yet establish that Connect credentials occupy it. Brokered access being safer than environment variables requires that second link, and it is the one to confirm before production.

What does Eve being Vercel-native mean for portability?

Eve’s Vercel-native runtime makes brokered agent access a single-vendor dependency today, on the same axis as the managed-agent layers from the other major clouds.

Eve runs on Vercel’s sandboxed compute. That puts “managed broker” in the same lock-in category as the alternatives a team would weigh it against: each wraps agent-to-data access in its own managed layer, and none is portable to the others. The dependency is not unique to Vercel, but naming it changes the purchase decision. A team that wires its private databases through Connect is committing both its agent code and its credential topology to Vercel; leaving later means re-declaring every connection against whatever the destination’s equivalent is.

The platform underneath is worth sizing against. The surface you would be leaving is itself a managed layer, not bare metal. Brokered, scoped agent access is arriving everywhere in roughly the same shape; the differentiator is whose broker you accept and which exit costs you carry.

What should you audit before routing production secrets through Connect?

Treat Connect as ready for the pattern and not yet proven for the guarantees.

The open questions a security review should close before production are narrow and specific. Where do the connection-layer credentials live, and do they sit in the sensitive tier that the April breach did not expose? Does the broker rotate them on a schedule or on demand, or is rotation still a manual step? What audit logging records which agent called which connection, and when? And how are scoped permissions expressed per connection, rather than as an all-or-nothing grant to the agent runtime? None of these are answered in Connect’s public documentation or the Eve launch material, and each is the difference between a genuine blast-radius reduction and a credential that has simply been moved.

The defensible position for now is to use Connect where scoped, short-lived access matters most, while keeping a clear inventory of what is routed through it. Vercel frames its AI Cloud as “Agentic Infrastructure” and bundles Connect alongside the AI Gateway, Sandboxes, and Workflows (Eve), so the direction is toward more of the agent’s dependencies living in Vercel’s layer rather than fewer. That is the bet to make consciously. Brokered access removes the secret from the agent runtime; it does not remove the secret from the system. It moves the trust boundary from your function to your vendor, and the April breach is the reminder that the vendor side of that boundary is not immune.

Frequently Asked Questions

How does Vercel Connect compare to Amazon Bedrock AgentCore or Google Vertex AI Agent Engine?

Connect’s closest peers are Amazon Bedrock AgentCore and Google Vertex AI Agent Engine, and all three wrap agent-to-data access in a managed layer that is not portable across them. Bedrock AgentCore leans on AWS IAM and VPC networking, and Vertex AI Agent Engine on Google’s identity primitives, while Eve’s broker currently inherits only Vercel’s compute and environment-variable tiers.

What does an Eve connections/ file declare?

It declares each target as either an MCP server or an OpenAPI-document endpoint, and the Eve framework resolves that declaration at call time instead of exposing the URL to the model. MCP support is what lets Connect front both tool-style servers and plain HTTP APIs through one connection convention.

How much deployment traffic on Vercel is already agent-driven?

Agent-driven deployments are 29 percent of total deployments on Vercel as of mid-2026, up from under 3 percent a year earlier, and Vercel projects the share will reach 50 percent next year. That curve is the commercial pressure behind productizing a managed broker instead of leaving teams to wire their own credentials.

What did the April 2026 Vercel incident reveal beyond the env-var exposure?

Vercel disclosed the breach on April 19, 2026, attributing initial access to a compromised employee Google Workspace account traced to Context.ai and Lumma Stealer malware. The infostealer vector matters for Connect because a broker that hides credentials from the model still inherits the vendor’s internal identity hygiene, and a stolen session on the vendor side can reach whatever tier the brokered credentials occupy.

Will Eve run on platforms other than Vercel?

Eve currently runs only on Vercel’s sandboxed compute, though Vercel has said it will support other platforms later without naming them or giving a timeline. Teams weighing Connect against Cloudflare Workers or a self-hosted agent runtime should treat the broker as single-vendor for now and price the eventual re-declaration of every connection into the adoption decision.

sources · 3 cited

  1. Introducing Evevercel.comvendoraccessed 2026-06-26
  2. Vercel Evevercel.comvendoraccessed 2026-06-26
  3. Vercel Breach Tied to Context.ai Hackthehackernews.comanalysisaccessed 2026-06-26