attest_call_list

writes

One of the tools an AI assistant can call on an Avrosh account.

What it does

Record that the people on a campaign may lawfully be called. THIS IS A LEGAL STATEMENT BY THE ACCOUNT HOLDER, NOT BY YOU. Only call it when the human has told you, in this conversation and in their own words, that these numbers may be called - who they are and why they may be contacted. Pass their sentence as `attestation`, unchanged; do not summarise it, improve it, or write one on their behalf. If they have not said it, ask; a campaign that is never started costs nothing, and an attestation nobody made is a claim the account holder did not make. The server records the time and the account that attested; neither can be backdated or attributed elsewhere. A campaign cannot run without this.

This is the exact text the model reads before deciding to call.

Parameters

business_idstringrequired

The id returned by list_businesses.

list_idstringrequired

From list_call_lists.

attestationstringrequired

The account holder's own words about why these people may lawfully be called. Stored verbatim as the record of the claim. Never compose this yourself.

Response

The result arrives as an MCP content block; the JSON in the panel is what the text field parses to.

Connecting

Point any MCP client at https://us.avrosh.com/mcp and log in — OAuth 2.1, no key to paste.

The panel here uses the other door: a bearer key made in the dashboard, for a script or a cron job with no browser to sign in with. Both reach the same endpoint. Full notes on the reference overview.

curl -X POST https://us.avrosh.com/mcp \
  -H "Authorization: Bearer $AVROSH_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "attest_call_list",
      "arguments": {
        "business_id": "926135ac-487d-4367-8bad-25397d0d4b87",
        "list_id": "7c2e...",
        "attestation": "These are my own numbers, used to test the service."
      }
    }
  }'