Quick Start
Get your first site WebMCP-enabled in under five minutes.
Prerequisites
- Any website where you can edit the HTML source
- An Agentable account (sign up free)
Add your site
In the dashboard, click Add site. Enter your site's URL and an optional label, then click Submit.
Copy the snippet
On your site's detail page, find the Snippet block. Click Copy to copy the script tag.
It looks like this:
<script src="https://yourdomain.com/mcp-manager.js?site=YOUR_PUBLIC_ID"></script>Paste it into your HTML
Add the script tag to every page where you want AI tools to be available, just before the closing </body> tag.
<body>
<!-- your existing content -->
<script src="https://yourdomain.com/mcp-manager.js?site=YOUR_PUBLIC_ID"></script>
</body>Verify the connection
Back in the dashboard, your site will show a Verified badge once the snippet has been detected. This happens automatically on the first page load with the snippet installed.
If the badge doesn't appear after a minute, see the troubleshooting section below.
Troubleshooting
Snippet not detected / no Verified badge
- Make sure the script tag is in the
<body>, not<head> - Check your browser console for errors — look for
[Agentable] - Confirm the
site=parameter matches your public ID exactly
CORS errors in the console
- The config endpoint is open to all origins — if you see CORS errors, it may be a network/proxy issue on your server or CDN
- Try accessing the snippet URL directly in your browser to confirm it loads
Tools not updating after changes
- The snippet caches the config for 60 seconds (ETag-based). Changes appear within a minute.