Add AI Audit tool to AWESOME_WEBMCP.md#25
Open
cyberandy wants to merge 1 commit intoGoogleChromeLabs:mainfrom
Open
Add AI Audit tool to AWESOME_WEBMCP.md#25cyberandy wants to merge 1 commit intoGoogleChromeLabs:mainfrom
cyberandy wants to merge 1 commit intoGoogleChromeLabs:mainfrom
Conversation
AI Audit (https://audit.wordlift.io/) exposes a run-audit tool via navigator.modelContext.registerTool() that lets browser AI agents trigger a full AI readiness analysis on any public URL.
Collaborator
|
May I ask why not have picked the declarative API for https://audit.wordlift.io/? I've tried the following and it worked great. - <form class="flex items-center gap-2">
+ <form class="flex items-center gap-2"
+ toolname="run-audit"
+ tooldescription="Run a full AI readiness audit on a given URL. Returns a structured report with an overall score (0–100) plus detailed findings for site files, SEO fundamentals, structured data, content structure, image accessibility, automation readiness, and JavaScript rendering."
+ toolautosubmit>
<input placeholder="https://example.com"
+ name="url"
+ toolparamdescription="The fully-qualified URL to audit (e.g. https://example.com). Must be a public, accessible page."
required
...
</form> |
Author
|
Great point @beaufortfrancois thanks. We started with navigator.modelContext for a quick, explicit MVP, but your declarative approach is better for discovery and works nicely in practice. We’ll add the declarative annotations (and likely keep the programmatic path for compatibility). Appreciate the snippet and the test. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AI Audit (https://audit.wordlift.io/) exposes a
run-audittool vianavigator.modelContext.registerTool()that lets browser AI agents trigger a full AI readiness analysis on any public URL.The tool returns a score (0–100) covering site files, SEO, structured data, content, and more — helping website owners understand their readiness for the agentic web.