wodira.app WebMCP audit

audited Sep 1, 2026in 16s
94/ 100100% of the applicable check weight evaluated

5 tools registered. Strongest in shared experience, weakest in trust.

Shared experience100
Task completion100
Tool quality94
Trust75
https://wodira.app
Captured view of https://wodira.app

Tools

1 read, 4 write
Loading map
get_wodira_page_context: pass

get_wodira_page_context

Returns the current WODira page title, safe route path, language, and main visible heading.Answers a question. Declared read only.
pagehttps://wodira.app/es/
implementation
viaimperative
entry pointdocument
registered after1672ms
executepresent
api surfaceTakes no parameters.
annotations
read onlytrue
untrusted contenttrue
titlenot declared
0 findingsNo check named this tool.
tool json
{
  "name": "get_wodira_page_context",
  "description": "Returns the current WODira page title, safe route path, language, and main visible heading.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "annotations": {
    "readOnlyHint": true,
    "untrustedContentHint": true
  }
}
Showing get_wodira_page_context

Findings

Shared experience

100 / 100 · weight 30
passPage experience
weight 20
The page a person sees holds up next to the agent surface: a working interface, visible actions, readable content, nothing in the way.
passHuman parity
weight 10
The person co-browsing can see and use this page - the same page the agent's tools act on.

Task completion

100 / 100 · weight 25
passTool selection
weight 15
An agent chose an existing, callable tool and built a schema-valid call for all 3 canonical intents, each matching the kind of tool its intent needs. Nothing was executed, so this verifies selection, not outcomes.
not applicableCoverage vs. site type
weight 10
This tool set does not place the site in a category with a known expected tool shape, so there is no coverage baseline to score it against.

Tool quality

94 / 100 · weight 25
warningRegistration timing
weight 1
The slowest tool took 1672ms to register, past the 1000ms an agent reading the registry at first paint would wait for.
toolstart_wodira_account_creation
start_wodira_account_creation: registered at 1672ms
fix
// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.registerTool({ /* ... */ });
passCanonical entry point
weight 3
All 5 tools register on the canonical document.modelContext entry point.
passSchema validity
weight 4
All 5 declared input schemas are structurally valid object schemas.
warningSchema quality
weight 4
1 of 5 tool schemas are harder for an agent to use than they need to be: search_wodira_events declares no required list, so an agent cannot tell which parameters are mandatory.
toolsearch_wodira_events
search_wodira_events: declares no required list, so an agent cannot tell which parameters are mandatory
fix
{
  name: "search_wodira_events",
  inputSchema: {
    type: "object",
    properties: {
      query: { type: "string", description: "What to search for" }
    },
    required: ["query"]
  }
}
warningNaming quality
weight 2
Tool naming makes selection harder than it needs to be: 1 name does not start with a verb (navigate_wodira).
toolnavigate_wodira
fix
{ name: "navigate_wodira" /* short, unique, verb-based */ }
passStub detection
weight 4
All 5 tools declare an execute handler.
passRegistration errors
weight 2
No tool registration threw during the capture.
passDescription quality
weight 5
All 5 rated tool descriptions say what the tool does, when to use it, and what it returns.

Trust

75 / 100 · weight 20
warningAnnotations present
weight 6
1 of 2 read-shaped tools do not declare readOnlyHint: true, so an agent has to treat them as possible writes and ask before calling. (Declaring readOnlyHint: false earns nothing - it is the default.)
toolsearch_wodira_events
search_wodira_events
fix
{
  name: "search_wodira_events",
  // Declare readOnlyHint: true on tools that truly have no side effects -
  // that is the claim that lets an agent relax confirmation on reads.
  // (false is the default, so declaring it adds no information.)
  annotations: { readOnlyHint: true }
}
passAnnotation mismatch
weight 6
No tool claims to be read-only while its own name or description says it writes (5 declared hints checked).
not applicableUntrusted content hint
weight 4
No tool's contract suggests it returns text written by somebody other than the site, so there is nothing to flag as untrusted.
not applicableInjection surface
weight 4
No tool's metadata carries instruction-shaped text aimed at the agent reading it. This check only ever flags; it never credits a site.

Tool selection

100% across 3 intents
I want to get wodira page context on this site.ok
choseget_wodira_page_contextexpected get wodira page contextkind matched
arguments
{}
I want to navigate wodira on this site.ok
chosenavigate_wodiraexpected navigate wodirakind matched
arguments
{
  "destination": "home"
}
I want to search wodira events on this site.ok
chosesearch_wodira_eventsexpected search wodira eventskind matched
arguments
{
  "query": "event",
  "location": "London"
}
model: gemini-2.5-flash

Add the tools this site is missing

Our scanner reads your website and suggests the right WebMCP tools for it.
Reads the site's public pages; takes a few seconds.
The open source webmcp plugin teaches your coding agent to audit a site, implement tools on document.modelContext, and verify them in a real browser. npx @ora-ai/webmcp-verify runs the verification on its own. No signup, no hosted service.
how this was captured
observed via
capture shim (Chromium 148.0.7778.96)
chrome
148.0.7778.96
capture shim
v1
spec snapshot
2026-08-26
mode
fast
pages
1 - entry page only
tools
5
run time
16s
finished
Sep 1, 2026
Checked the way in-browser agents discover tools: the top-level document's modelContext registry, read after the page settles.
Listed in the community directory.