Access Twilio communication APIs. Send SMS messages, query call logs, and manage phone numbers.
MCP (Model Context Protocol) servers extend Claude's capabilities with external tools and data sources. They provide access to databases, APIs, file systems, and more. Configure MCP servers in .mcp.json or add them via `claude mcp add` command.
Setup: 1. Get credentials from https://console.twilio.com 2. Find Account SID and Auth Token on the dashboard CLI Command: TWILIO_ACCOUNT_SID=AC... TWILIO_AUTH_TOKEN=... claude mcp add twilio -- npx -y mcp-server-twilio Features: - Send SMS messages - Query message history - Access call logs - Manage phone numbers
{
"mcpServers": {
"twilio": {
"command": "npx",
"args": ["-y", "mcp-server-twilio"],
"env": {
"TWILIO_ACCOUNT_SID": "AC...",
"TWILIO_AUTH_TOKEN": "..."
}
}
}
}Manage Docker containers and images. List, start, stop containers, view logs, and inspect container configurations.