11 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
get_site_context, search_marketing_jobs, get_research_trackers, subscribe_to_newsletter, action_company_get<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_site_context" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_site_context",
"description": "Return public Marketing Manager Jobs site context: stats, taxonomy, routes, recent jobs, and citation guidance.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}action_job_get: registered at 1261ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });search_marketing_jobs: declares no required list, so an agent cannot tell which parameters are mandatory; get_research_trackers: declares no required list, so an agent cannot tell which parameters are{
name: "search_marketing_jobs",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}subscribe_to_newsletter, action_company_get, action_digest_subscribe, action_job_get, action_jobs_search{
name: "subscribe_to_newsletter",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "action_company_get" /* short, unique, verb-based */ }get_site_context, search_marketing_jobs, get_research_trackers, subscribe_to_newsletter, action_company_get<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_site_context" tooldescription="...">
<!-- the same action, as UI -->
</form>