7 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: [/* ... */] });resolveIdentifier, formatCitation, exportCitation, checkRetraction, checkOpenAccess{
name: "resolveIdentifier",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}resolveIdentifier, formatCitation, exportCitation, checkRetraction, checkOpenAccess<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="resolveidentifier" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "resolveIdentifier",
"description": "Resolve scholarly identifiers (DOI, PMID, PMCID, ISBN, arXiv, ISSN, ADS, WHO IRIS) to structured CSL-JSON metadata. Read-only.",
"inputSchema": {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "One or more identifiers (DOI, PMID, PMCID, ISBN, arXiv, ISSN, ADS bibcode, WHO IRIS URL) separated by newlines or commas."
}
},
"required": [
"text"
],
"additionalProperties": false
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });auditBibliography: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "auditBibliography",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}resolveIdentifier, formatCitation, exportCitation, checkRetraction, checkOpenAccess{
name: "resolveIdentifier",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "formatcitation" /* short, unique, verb-based */ }resolveIdentifier, formatCitation, exportCitation, checkRetraction, checkOpenAccess<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="resolveidentifier" tooldescription="...">
<!-- the same action, as UI -->
</form>