Sms Gateway using your phone
SMS MCP server for AI coding tools and developers to integrate SMS messaging, notifications, OTPs, alerts, reminders, and automations into apps using real…
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Create Webhook: Register a webhook URL that SMS8 will POST inbound messages and delivery events to. Returns the configured webhook + a sample payload schema the AI can use to scaffold the receiving ha
- Get Balance: Return the user's remaining SMS credits, plan name, expiry date and a one-line human summary. Lightweight, safe to call any time before a bulk send to check whether the account has enough
- Get Messages: Fetch recent SMS messages on the user's account. Filter by direction (received|sent|all) and limit. Useful for showing inbox state, debugging delivery, or building reply flows.
What data it sees
Do you need an account
No: the server works without sign-in
SMS MCP server for AI coding tools and developers to integrate SMS messaging, notifications, OTPs, alerts, reminders, and automations into apps using real Android devices via SMS8.io.
Server tool list (9)
Raw names from tools/list. Only developers need these.
| create_webhook | Register a webhook URL that SMS8 will POST inbound messages and delivery events to. Returns the configured webhook + a sample payload schema the AI can use to scaffold the receiving handler. Pass `enabled: false` to remove the webhook. |
| get_balance | Return the user's remaining SMS credits, plan name, expiry date and a one-line human summary. Lightweight, safe to call any time before a bulk send to check whether the account has enough credits left for the job. |
| get_messages | Fetch recent SMS messages on the user's account. Filter by direction (received|sent|all) and limit. Useful for showing inbox state, debugging delivery, or building reply flows. |
| list_devices | List the user's paired SMS8 devices (phones running the SMS8 Android app). Returns each device's ID, model, primary flag, and enabled status. If the list is empty, the user needs to install + pair the Android app at app.sms8.io/devices.php. |
| send_otp | Send a one-time verification code to a phone number. Stores the code server-side; verify later with verify_otp. 5-minute expiry, 5 attempts, 60-second resend cooldown by default. Hard per-phone cap of 5 OTPs per 24h. |
| verify_otp | Verify a code the user typed against the most recent OTP issued for that phone. Returns { verified: true|false, reason }. |
| send_sms | Send an SMS to one phone number through the user's paired SMS8 device(s). Returns the message ID. Supports per-device + per-SIM routing identical to the SMS8 dashboard. |
| setup_sms8 | Start here. Validate the user's SMS8 API key and return everything needed to integrate SMS, OTP, and webhooks into their app — including code samples and dashboard links. Pass api_key once via this tool to set up the session. |
| wait_for_otp | Block until a one-time-password SMS arrives on the user's paired Android, or the timeout elapses. Returns the extracted numeric code plus the raw SMS body and sender. Use this when an agent has just submitted a form that triggers an OTP and needs to read it back to complete a signup or 2FA flow. Polls the user's real inbox; no disposable numbers, no third-party VoIP rental. |