sms77io

sms77io

3.4

The sms77io MCP Server is a communication platform for sending SMS and voice messages, performing phone number lookups, and managing contacts and accounts.

The sms77io MCP Server is a robust communication platform that allows you to easily send SMS and voice messages, perform various types of phone number lookups, and manage contacts and accounts with ease. Leveraging the capabilities of the seven.io SMS gateway, this server has been powering SMS solutions since 2003. Get started by obtaining your API key and explore the vast functionalities this server offers.

Features

  • {'name': 'Messaging', 'description': 'Send SMS and transform text into voice calls with customizable options.'}
  • {'name': 'Lookups', 'description': 'Perform various phone number lookups including CNAM, HLR, MNP, and number formats.'}
  • {'name': 'Analytics and Reports', 'description': 'Gain insights through detailed statistics and delivery reports.'}
  • {'name': 'Account Management', 'description': 'Manage pricing information, contacts, and subaccounts efficiently.'}
  • {'name': 'Advanced Features', 'description': 'Utilize voice calls, RCS capabilities, and webhooks for enhanced communication.'}

Usage with Different Platforms

python

python
import requests

api_key = 'your_api_key'
url = 'https://gateway.sms77.io/api/sms'

params = {
    'to': 'recipient_number',
    'text': 'Hello, this is a test message!',
    'from': 'sender_name',
    'p': api_key
}

response = requests.get(url, params=params)
print(response.text)

nodejs

javascript
const axios = require('axios');

const apiKey = 'your_api_key';
const url = 'https://gateway.sms77.io/api/sms';

axios.get(url, {
    params: {
        to: 'recipient_number',
        text: 'Hello, this is a test message!',
        from: 'sender_name',
        p: apiKey
    }
}).then(response => {
    console.log(response.data);
}).catch(error => {
    console.error(error);
});