live · Productivity & Work · JSON · API for agents
Navigates to Attention's demo-scheduling page (powered by Default). The page opens a calendar where the user picks a time with the sales team. Optionally pre-fills a note with context (company, team size, use-case).
{
"name": "book_demo",
"kind": "action",
"impl": "imperative",
"description": "Navigates to Attention's demo-scheduling page (powered by Default). The page opens a calendar where the user picks a time with the sales team. Optionally pre-fills a note with context (company, team size, use-case).",
"inputSchema": {
"type": "object",
"properties": {
"note": {
"type": "string",
"description": "Optional context (company name, use-case, team size) to pre-fill on the booking form."
}
},
"additionalProperties": false
}
}Searches the Attention product docs and API reference by filtering the published llms.txt index at docs.attention.com/llms.txt. Returns an array of {title, url, snippet} matches. Use this before recommending doc pages to the user so citations resolve to real URLs.
{
"name": "search_docs",
"kind": "read",
"impl": "imperative",
"description": "Searches the Attention product docs and API reference by filtering the published llms.txt index at docs.attention.com/llms.txt. Returns an array of {title, url, snippet} matches. Use this before recommending doc pages to the user so citations resolve to real URLs.",
"inputSchema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search terms, e.g. 'scorecards', 'MCP server', 'Salesforce integration', 'SCIM'."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 8,
"description": "Maximum results to return."
}
},
"additionalProperties": false
}
}