4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });get_company_profile, find_service_page, get_intake_links, get_knowledge_sources{
name: "get_company_profile",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}get_company_profile, find_service_page, get_intake_links, get_knowledge_sources<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_company_profile" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_company_profile",
"description": "Returns public entity facts for Match-Day, including positioning, location, contact details and core services.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });find_service_page: 1 parameter has no description (language); get_intake_links: 2 parameters have no description (intent, language); get_knowledge_sources: 2 parameters have no description (topic, lan{
name: "find_service_page",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_company_profile, find_service_page, get_intake_links, get_knowledge_sources{
name: "get_company_profile",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));get_company_profile, find_service_page, get_intake_links, get_knowledge_sources<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_company_profile" tooldescription="...">
<!-- the same action, as UI -->
</form>