The WebMCP Company
AI consulting and products that help people and agents use WebMCP.
MCP-B helped inspire the WebMCP spec. Now we help developers ship agent-native web apps, companies ship web-native agents, and users navigate the web with agents — all through WebMCP.
Loading available times…
The calendar didn’t load. Book directly on Cal.com or email alex@mcp-b.ai.
Packages
Core runtime, React, agent, and browser tooling.
registerTool.ts
1// Register a tool for AI agents
2document.modelContext.registerTool({
3 name: 'search_products',
4 description: 'Search the catalog',
5 inputSchema: {
6 type: 'object',
7 properties: {
8 query: { type: 'string' }
9 }
10 },
11 execute: (params) =>
12 catalog.search(params.query),
13});
Ready to make your site agent-ready?
Install the packages, publish tools through document.modelContext, and connect an agent. Everything is open source.
