|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.twilio-mcp", |
| 4 | + "name": "Twilio", |
| 5 | + "alias": "twilio", |
| 6 | + "description": "Access Twilio's communication APIs including SMS, Voice, Video, and more through the official Twilio Alpha MCP server covering 1,400+ API endpoints.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/109142?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["communication", "cloud"], |
| 10 | + "tags": ["twilio", "sms", "voice", "messaging", "communication", "api", "telephony"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@twilio-alpha/mcp", "${input:TWILIO_CREDENTIALS}"], |
| 16 | + "metadata": { |
| 17 | + "inputs": [ |
| 18 | + { |
| 19 | + "id": "TWILIO_CREDENTIALS", |
| 20 | + "label": "Twilio Credentials", |
| 21 | + "description": "Twilio credentials in the format ACCOUNT_SID/API_KEY:API_SECRET. Requires your Account SID, an API Key, and its corresponding API Secret.", |
| 22 | + "type": "password", |
| 23 | + "required": true, |
| 24 | + "secret": true, |
| 25 | + "placeholder": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/SKxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 26 | + "obtain": { |
| 27 | + "url": "https://www.twilio.com/console/project/api-keys", |
| 28 | + "instructions": "1. Go to the Twilio Console\n2. Copy your Account SID from the dashboard\n3. Navigate to Account > API keys & tokens\n4. Click 'Create API key'\n5. Copy the SID and Secret\n6. Combine as: ACCOUNT_SID/API_KEY_SID:API_SECRET", |
| 29 | + "button_label": "Create API Key" |
| 30 | + } |
| 31 | + } |
| 32 | + ] |
| 33 | + } |
| 34 | + }, |
| 35 | + |
| 36 | + "auth": { |
| 37 | + "type": "api_key", |
| 38 | + "instructions": "Create an API key at https://www.twilio.com/console/project/api-keys and combine with your Account SID as ACCOUNT_SID/API_KEY:API_SECRET" |
| 39 | + }, |
| 40 | + |
| 41 | + "contributor": { |
| 42 | + "name": "Twilio", |
| 43 | + "github": "twilio-labs", |
| 44 | + "url": "https://www.twilio.com" |
| 45 | + }, |
| 46 | + |
| 47 | + "links": { |
| 48 | + "repository": "https://github.com/twilio-labs/mcp", |
| 49 | + "homepage": "https://www.twilio.com", |
| 50 | + "documentation": "https://github.com/twilio-labs/mcp#readme" |
| 51 | + }, |
| 52 | + |
| 53 | + "platforms": ["all"], |
| 54 | + |
| 55 | + "capabilities": { |
| 56 | + "tools": true, |
| 57 | + "resources": false, |
| 58 | + "prompts": false, |
| 59 | + "read_only_mode": false |
| 60 | + } |
| 61 | +} |
0 commit comments