An Agent that acts as an MCP client — dynamically connects to remote MCP servers, handles OAuth authentication, and aggregates tools, prompts, and resources from all connected servers.
addMcpServer/removeMcpServer— managing MCP server connections from an AgentonMcpUpdate— real-time state updates pushed to the React frontend via WebSocketthis.mcp.configureElicitationHandlers— handles both Stateless Elicitation (input_requiredthrough MRTR) and Legacy Elicitation (pushedelicitation/create); the Agent broadcasts requests to the browser and the human's answer resolves the pending operation via a@callablemethod- OAuth popup flow —
configureOAuthCallbackwith a custom handler that closes the popup after auth agentFetch— making HTTP requests to the Agent's custom endpoints from the client
npm install
npm run startThe UI lets you add MCP server URLs, see their connection state, browse their tools, prompts, and resources, and run tools. If a tool call triggers an elicitation, a card appears asking for your input.
To test with an authenticated server, run mcp-worker-authenticated alongside this example and add its URL. For Stateless Elicitation, run mcp-elicitation-mrtr and call increase-counter. To test pushed form- and URL-mode Legacy Elicitation, run mcp-elicitation. Each endpoint is /mcp (for example, http://localhost:8787/mcp).
Copy .env.example to .env if you need to override the OAuth callback host:
cp .env.example .envThe Agent manages MCP connections via the built-in mcp property:
export class MyAgent extends Agent {
onStart() {
this.mcp.configureOAuthCallback({
customHandler: (result) => {
if (result.authSuccess) {
return new Response("<script>window.close();</script>", {
headers: { "content-type": "text/html" }
});
}
return new Response(`Auth failed: ${result.authError}`, {
status: 400
});
}
});
}
async onRequest(request) {
// Custom endpoints for the frontend
if (url.pathname.endsWith("add-mcp")) {
const { name, url } = await request.json();
await this.addMcpServer(name, url);
return new Response("Ok");
}
}
}The React frontend uses useAgent with onMcpUpdate to receive real-time server state:
const agent = useAgent({
agent: "my-agent",
name: sessionId,
onMcpUpdate: (mcpServers) => setMcpState(mcpServers),
onOpen: () => setConnected(true)
});mcp— stateful MCP server (good target to connect to)mcp-worker-authenticated— authenticated server (tests the OAuth flow)