twilio_list_messages
ActiveTool of Twilio
declared in 0.1.0
List recent SMS/MMS messages from your Twilio account. Supports filtering by to/from number and pagination.
Parameters schema
{
"type": "object",
"examples": [
{
"limit": 20,
"_authToken": "your-twilio-auth-token",
"_accountSid": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"to": "+15551234567",
"from": "+15559876543",
"limit": 50,
"_authToken": "your-twilio-auth-token",
"_accountSid": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
],
"required": [
"_accountSid",
"_authToken"
],
"properties": {
"to": {
"type": "string",
"description": "Filter by destination phone number"
},
"from": {
"type": "string",
"description": "Filter by sender phone number"
},
"limit": {
"type": "number",
"description": "Max messages to return (default 20, max 100)"
},
"_authToken": {
"type": "string",
"description": "Twilio Auth Token"
},
"_accountSid": {
"type": "string",
"description": "Twilio Account SID"
}
}
}Parent server
Twilio
https://github.com/pipeworx-io/mcp-twilio
1/7 registries