AccessMe

Developer Integration Guide Version 1.0 · June 2026
Make your website accessible to AI assistants (ChatGPT, Claude, Gemini) — 3 files, 5 minutes, zero backend changes.
💡 Think of it like sitemap.xml for search engines — except this makes your site usable by AI platforms.
Integration Steps
1

Add the script tag

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>
2

Create the discovery file

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"
}
3

Create the site manifest

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"]
}

✅ What this does

🚫 What this does NOT do

Supported Capabilities

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
Verify Your Integration

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>