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
- Open Chrome and navigate to
chrome://flags/#enable-webmcp-testing - Set "WebMCP for testing" to Enabled
- 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:
- Search for "Model Context Tool Inspector" in the Chrome Web Store, or follow the link from the Chrome WebMCP early preview docs
- Install the extension
- 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:
- Navigate to your site (or
http://localhost:3000/demo.htmlfor the demo) - Open the extension
- Select a tool from the dropdown
- Fill in the input arguments as JSON, e.g.:
{ "productId": "shoe-01", "quantity": 1 } - 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:
- Add your Gemini API key in the extension settings (get one free from Google AI Studio)
- Type a natural language prompt, e.g. "Search for running shoes"
- 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.