Connect an LLM Client to Your Site

Once your tools are live on Aigentably, AI agents that support WebMCP can call them directly — no API key sharing, no custom plugin required. This guide covers how to test and use your tools with Chrome's native WebMCP support.

How it works

Aigentably registers your tools via navigator.modelContext in the browser. When an AI agent navigates to your page, it discovers these tools and can call them on behalf of the user — no scraping, no guessing.

WebMCP is currently in early preview in Chrome 146+ behind a flag. All other browsers are covered automatically by the Aigentably polyfill, so your tools still work — agents just need a way to access them.

Enable WebMCP in Chrome

  1. Open Chrome and navigate to chrome://flags/#enable-webmcp-testing
  2. Set "WebMCP for testing" to Enabled
  3. Relaunch Chrome

Requires Chrome 146.0.7672.0 or higher. Check your version at chrome://settings/help.

Install the Model Context Tool Inspector

Google provides an official Chrome extension for inspecting and calling WebMCP tools:

  1. Search for "Model Context Tool Inspector" in the Chrome Web Store, or follow the link from the Chrome WebMCP early preview docs
  2. Install the extension
  3. Navigate to any page with Aigentably tools registered

The extension shows a badge when tools are available. Click it to:

  • See all registered tools — name, description, and input schema
  • Call tools manually — fill in parameters and execute without an AI agent
  • Test with natural language — enter a prompt and let the built-in Gemini agent pick the right tool and call it

Test your tools manually

The fastest way to verify your setup:

  1. Navigate to your site (or http://localhost:3000/demo.html for the demo)
  2. Open the extension
  3. Select a tool from the dropdown
  4. Fill in the input arguments as JSON, e.g.:
    { "productId": "shoe-01", "quantity": 1 }
  5. Click Execute Tool — the result appears immediately

This lets you confirm your executeJs is working correctly before involving any AI agent.

Test with natural language

The extension has a built-in Gemini agent for simulating real interactions:

  1. Add your Gemini API key in the extension settings (get one free from Google AI Studio)
  2. Type a natural language prompt, e.g. "Search for running shoes"
  3. The agent picks the right tool, generates the correct arguments, and calls it

This is the best way to verify your tool descriptions and schemas are clear enough for an agent to use correctly.

What's next

Native WebMCP support in AI agents beyond Chrome's built-in testing extension is still emerging. As the standard matures, agents like Claude, ChatGPT, and Cursor are expected to adopt it. Your tools registered through Aigentably will work automatically — no changes needed on your end when new agents add support.

Follow the WebMCP spec on GitHub to track adoption progress.