Web-MCPDocs

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.

bash
npm install @webmcp/sdk\n# or\nyarn add @webmcp/sdk\n# or\npnpm add @webmcp/sdk

Step 2: Configure Your API Key

Add your API key to your environment variables.

bash
# .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.

typescript
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.

Video coming soon
Was this page helpful?