Dial
Dial — Phone numbers for AI agents Dial gives your agent a real phone number.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные
Что умеет
- Get Account Status: Report account readiness: whether you have a phone number to send from or call from.
- List Numbers: List the phone numbers on your account.
- Purchase Number: Provision an additional phone number on your account.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Dial — Phone numbers for AI agents
Dial gives your agent a real phone number. Over a single OAuth-authenticated connection it can send and receive SMS, place AI-handled voice calls, provision numbers, and wait for inbound events like one-time codes — no Twilio account, API keys, or telephony glue required.
Connect once via OAuth (browser sign-in, no API key to paste), and the agent gets an account scoped to you. Outbound calls run asynchronously: place the call, block on the event, then pull the transcript.
What your agent can do
| Tool | What it does |
|---|---|
get_account_status |
Check whether you have a number to send/call from |
list_numbers |
List the phone numbers on your account |
purchase_number |
Provision an additional phone number |
set_number_properties |
Set a number's inbound AI voice agent prompt |
send_message |
Send an SMS from one of your numbers |
list_messages |
List recent SMS, newest first |
place_call |
Place an outbound AI-handled voice call (async) |
list_calls |
List recent calls with status |
get_call |
Get a call's status, duration, and transcript |
wait_for_event |
Block until an inbound SMS or call-ended event arrives |
Common uses
- Receive 2FA / OTP codes — point a sign-up flow at your Dial number, then
wait_for_eventfor the code. - Outbound notifications — text yourself or a user when a long task finishes.
- AI voice calls — have an agent call a number and hand back a full transcript.
Endpoint: https://getdial.ai/mcp (Streamable HTTP) · Auth: OAuth 2.1 · Site: https://getdial.ai
Список инструментов сервера (10)
Технические названия из tools/list. Нужны только разработчикам.
| get_account_status | Report account readiness: whether you have a phone number to send from or call from. |
| list_numbers | List the phone numbers on your account. |
| purchase_number | Provision an additional phone number on your account. |
| set_number_properties | Update a number's inbound instruction (the system prompt its AI voice agent uses on calls to it). |
| send_message | Send an SMS message from one of your Dial numbers. |
| list_messages | List recent SMS messages on your account, newest first (up to 100). |
| place_call | Place an outbound voice call handled by an AI agent. The call runs asynchronously — use wait_for_event to block until it ends, then get_call for the transcript. |
| list_calls | List recent calls on your account, newest first (up to 100), with derived status. |
| get_call | Fetch a single call: status, duration, and transcript. |
| wait_for_event | Block until a matching account event arrives (e.g. an inbound SMS, or a call ending). |