2 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
book_a_call: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "book_a_call",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}book_a_call, start_signup{
name: "book_a_call",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}book_a_call, start_signup<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="book_a_call" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "book_a_call",
"description": "Open Inkle's scheduling page to book a call with the team (sales, tax, bookkeeping, incorporation, or sales tax).",
"inputSchema": {
"type": "object",
"properties": {
"topic": {
"type": "string",
"description": "What the call is about, e.g. 'tax filing', 'bookkeeping', 'incorporation'."
}
}
},
"annotations": {}
}book_a_call: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "book_a_call",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}book_a_call, start_signup{
name: "book_a_call",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));book_a_call, start_signup<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="book_a_call" tooldescription="...">
<!-- the same action, as UI -->
</form>