Install on WordPress

Add the Findables tags to every page of your WordPress site in under two minutes — no plugin required.

1

Get your domain handle

After signing up, your domain handle is shown in your Findables dashboard. It looks like myshop — your tags will be served from myshop.findables.ai.

2

Install a header scripts plugin (recommended)

The easiest way is a plugin that adds code to your <head> without touching theme files. Any of these work well:

  • Insert Headers and Footers (WPCode) — free, most popular, search it in Plugins → Add New
  • Head, Footer and Post Injections — similar, also free

Once active, find the plugin's Head field and paste both tags there. Alternatively, edit Appearance → Theme File Editor → header.php directly.

Do not use Google Tag Manager for this. GTM injects via JavaScript after page load — AI crawlers won't see it. Use a plugin or edit header.php directly.
3

Add the AI discovery tag

In your plugin's Header field (or in header.php just before </head>), paste this first:

<link rel="service" href="https://YOUR_DOMAIN.findables.ai/.well-known/mcp.json" data-findables>
This tag must be in your server-rendered <head> — it cannot be added via JavaScript or a tag manager. AI crawlers like Claude fetch raw HTML without running scripts, so they would never see a JS-injected tag.
4

Add the tracking script

In the same location, also paste this script — it runs when real visitors load your pages and keeps your AI profile up to date:

<script src="https://YOUR_DOMAIN.findables.ai/findables.js" async></script>
5

Save and verify

Save your changes. Visit any page on your site, right-click → View Page Source, and confirm both tags appear inside <head>.

Your Findables dashboard will show pages registering within a minute of real visitors loading your site.

After signing up, your domain handle is shown in your Findables dashboard. It looks like myshop — your tags will be served from myshop.findables.ai.

2

Install a header scripts plugin (recommended)

The easiest way is a plugin that adds code to your <head> without touching theme files. Any of these work well:

Once the plugin is active, find its Head or Header field and paste both tags there (steps 3 and 4). Skip the file-editing instructions below if using a plugin.

Prefer not to use a plugin? Go to Appearance → Theme File Editor → header.php and paste just before the closing </head> tag. If you're on a block theme, use Appearance → Editor → Templates to add a Custom HTML block in the head.
3

Add the AI discovery tag

AI crawlers like Claude fetch your page as plain HTML without running JavaScript. This static tag tells them where your MCP server lives so they can discover your content.

In your plugin's Header field (or directly in header.php), paste this line:

<link rel="service" href="https://YOUR_DOMAIN.findables.ai/.well-known/mcp.json" data-findables>
This tag must be in your server-rendered <head>. It cannot be added via JavaScript or a tag manager.
4

Add the tracking script

This script runs when real visitors load your pages — it ingests content and keeps your AI profile up to date.

In the same Header field (or header.php), paste this line alongside the link tag from step 3:

<!-- Findables AI discoverability -->
<script src="https://YOUR_DOMAIN.findables.ai/findables.js" async></script>
5

Save and verify

Click Update File. Visit any page on your site, right-click → View Page Source, and confirm both tags are present in <head>.

Your Findables dashboard will show the first pages registering within a minute of real visitors loading your site.