Welcome to Web-MCP
Web-MCP helps you implement Google's Web MCP protocol — making your website discoverable and usable by AI agents like ChatGPT, Gemini, Claude, and Perplexity. Get MCP-ready in minutes.
1Quick Start Guide
Follow these steps to get Web-MCP up and running in under 5 minutes.
Step 1: Install the SDK
Add Web-MCP to your project using your preferred package manager.
npm install @webmcp/sdk\n# or\nyarn add @webmcp/sdk\n# or\npnpm add @webmcp/sdkStep 2: Configure Your API Key
Add your API key to your environment variables.
# .env.local\nWEBMCP_API_KEY="your-api-key-here"Step 3: Generate Your MCP Schema
Point Web-MCP at your site and generate MCP-compatible server definitions.
import { Web-MCP } from '@webmcp/sdk';
// Initialize with your configuration
const mcp = new Web-MCP({
apiKey: process.env.WEBMCP_API_KEY,
domain: 'yourdomain.com',
});
// Generate MCP schema from your site
await mcp.generate();
// Deploy MCP endpoints
await mcp.deploy();Watch the Overview
Get a visual walkthrough of Web-MCP's key features in this 3-minute video.
Next Steps
What is Web MCP?
Understand Google's protocol for making sites AI-agent discoverable.
Compliance Scanner
Audit your site's MCP readiness and get an instant score.
Schema Generator
Auto-generate MCP server definitions from your existing site.
Agent Analytics
Track how AI agents discover and interact with your content.