sitemap.xml for search engines — except this makes your site usable by AI platforms.
Place this single line before the closing </body> tag in your site's main HTML template. This automatically injects the AccessMe floating AI chatbox widget in the bottom-right corner:
<script src="https://cdn.accessme.xyz/v1/agent.js"></script>
Create /.well-known/mcp.json in your website's public root (SEP-1649 Standard):
{
"schema_version": "1.0",
"capabilities": ["mcp"],
"manifest_url": "/site-manifest.json"
}
Create /site-manifest.json in your public root describing what your site can do:
{
"schema_version": "1.0",
"site_name": "Your Website Name",
"site_url": "https://yourwebsite.com",
"auth_mode": "browser_proxy",
"capabilities": ["search", "navigation", "checkout"]
}
Choose the capabilities that match your website's functionality in the capabilities array:
"search" → Product/content search "navigation" → Browse pages and categories "checkout" → Complete purchases (e-commerce) "forms" → Fill and submit forms "booking" → Make reservations or appointments "account" → View order history, profile management
After deploying, confirm these URLs return valid responses:
https://yourwebsite.com/.well-known/mcp.json → Should return discovery JSON https://yourwebsite.com/site-manifest.json → Should return your manifest view-source:yourwebsite.com → Script tag should be visible before </body>