8 tools registered. Strongest in WebMCP use, 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, list_services, find_service_by_intent, compare_engagement_models, get_case_studies{
name: "get_company_profile",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}get_company_profile, list_services, find_service_by_intent, compare_engagement_models, get_case_studies<!-- 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 Siblings Software company profile, delivery model, ideal buyers, and contact channels.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });list_services: declares no required list, so an agent cannot tell which parameters are mandatory; compare_engagement_models: declares no required list, so an agent cannot tell which parameters are man{
name: "list_services",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_company_profile, list_services, find_service_by_intent, compare_engagement_models, get_case_studies{
name: "get_company_profile",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "contactsiblingssoftware" /* short, unique, verb-based */ }get_company_profile, list_services, find_service_by_intent, compare_engagement_models, get_case_studies<!-- 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>