3 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: [/* ... */] });search_connectors, open_docs, get_api_catalog{
name: "search_connectors",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_connectors, open_docs, get_api_catalog<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_connectors" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_connectors",
"description": "Search the Airbyte connector catalog by keyword (client-side redirect to /connectors).",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Connector or source name"
}
},
"required": [
"query"
]
},
"annotations": {}
}open_docs: registered at 1069.4000000953674ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });open_docs: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "open_docs",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_connectors, open_docs, get_api_catalog{
name: "search_connectors",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_docs" /* short, unique, verb-based */ }search_connectors, open_docs, get_api_catalog<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_connectors" tooldescription="...">
<!-- the same action, as UI -->
</form>