A

attention.com

Attention records your sales touchpoints across meetings, emails, calls, CRMs and more. Our AI agents that learn from that data and automates busywork: follow-ups, next steps, CRM filling, coaching…

1read
1action
https://attention.com

live · Productivity & Work · JSON · API for agents

Tools 2 tools

book_demoaction

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).

View tool JSON
{
  "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
  }
}
search_docsread

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.

View tool JSON
{
  "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
  }
}