Advanced Agent Protocol Tool
WebMCP Schema Generator
Generate the perfect .well-known/webmcp.json manifest and Declarative Meta Tags to let AI Agents seamlessly interact with your website.
Site Configuration
/.well-known/webmcp.json
{ "schema_version": "1.0", "agent_access": "allowed", "website": { "name": "Your Website Name", "url": "https://yourwebsite.com", "description": "Description of what your website does." }, "imperative_api": { "supported": true, "registered_tools": [ { "name": "search_products", "description": "Search for products on the store.", "endpoint_hint": "/api/search" } ] } }
HTML <head> Tags
<!-- WebMCP Declarative Meta Tags -->
<meta name="agent-mode" content="ready" />
<meta name="webmcp" content="allow" />
<meta name="webmcp-manifest" content="https://yourwebsite.com/.well-known/webmcp.json" />
<link rel="agent-manifest" href="/.well-known/webmcp.json" />
How to Use the WebMCP Manifest?
Once you generate your WebMCP schema using our advanced tool, you need to implement it correctly so AI Agents can find it. Follow these two simple steps to make your site Agent-Ready:
1. The Manifest File
Create a folder named .well-known in the root of your domain. Save the generated JSON code as webmcp.json inside this folder.
https://yourdomain.com/.well-known/webmcp.json2. Declarative Tags
Copy the generated HTML Meta Tags and paste them inside the <head> section of your website's main layout or index file.
<meta name="webmcp" content="allow" />