Notre avis
Récupère les informations sur les canaux de messagerie disponibles et leurs capacités via l'API Conversation de Sinch.
Points forts
- Utilise les outils MCP si disponibles pour une configuration simplifiée.
- Liste exhaustive des canaux supportés (WhatsApp, SMS, RCS, etc.).
- Vérifie les capacités par contact et par application.
Limites
- Nécessite des identifiants Sinch valides et la configuration des outils MCP.
- La vérification de capacité peut être asynchrone selon l'API utilisée.
- Dépend de l'environnement pour les régions et l'authentification.
Lorsque l'utilisateur demande quels canaux sont disponibles ou quel canal utiliser pour atteindre un contact spécifique.
Si l'utilisateur souhaite envoyer un message directement, une compétence d'envoi de message serait plus appropriée.
Analyse de sécurité
SûrNo destructive or exfiltrating actions. Only makes API calls for channel information using environment credentials.
Aucun point d'attention détecté
Exemples
Which channels can I use to reach Bob?Show me available channels for contact abc123What messaging channels are available?name: channel-info description: Check available messaging channels, channel capabilities, and channel configuration for Sinch Conversation API. Use when the user asks which channels are available, what channels can be used, how to reach someone, what messaging options exist, or channel capabilities for a contact or app.
Channel Information
Retrieve information about available messaging channels and their capabilities. Prefer MCP tools if available, otherwise use the Conversation API specification. Helps determine which channels can be used to reach contacts.
Instructions
-
Understand the user's query:
- Are they asking about available channels in general?
- Are they asking which channels can reach a specific contact?
- Are they asking about channel capabilities or configuration?
-
Check MCP availability and use appropriate method:
Option A: Use MCP tools (if MCP Sinch is configured):
- First check if MCP Sinch server is available (check MCP server configuration)
- If MCP is available, use:
list-conversation-appsto get list of apps and their channel configurations
- MCP tools handle authentication automatically via environment variables
- If MCP tool execution fails or MCP is not configured, fallback to Option B
Option B: Use Conversation API endpoints (fallback if MCP not available):
- List apps:
GET /v1/projects/{project_id}/apps(Operation ID:App_ListApps) - Shows configured apps and their channel settings - Get contact:
GET /v1/projects/{project_id}/contacts/{contact_id}(Operation ID:Contact_GetContact) - Shows which channels are associated with a contact - List contacts:
GET /v1/projects/{project_id}/contacts(Operation ID:Contact_ListContacts) - Can filter by channel to see contacts on specific channels - Query capability:
POST /v1/projects/{project_id}/capability:query(Operation ID:Capability_QueryCapability) - Asynchronously checks which channels can reach a contact - Authentication: Use Basic Auth or OAuth2 with credentials from environment variables
- Region: Use CONVERSATION_REGION environment variable (us, eu, or br)
- Base URL:
https://{region}.conversation.api.sinch.com
-
Provide comprehensive channel information:
- List all available channels: WhatsApp, SMS, RCS, Messenger, Viber, Instagram, Telegram, LINE, WeChat, KakaoTalk, Apple Messages for Business
- For contacts: Show which channels are configured for that contact
- Explain channel capabilities and use cases
- Indicate channel availability status
Examples
Natural language prompts that trigger this Skill:
- "Which channels can I use to reach Bob?"
- "What messaging channels are available?"
- "Show me available channels for contact abc123"
- "What channels does this app support?"
- "Can I send WhatsApp messages?"
- "What are my messaging options?"
MCP Tool Usage (Preferred if available):
- Check if MCP Sinch server is configured (MCP server settings)
- Use
list-conversation-appsMCP tool to get apps and their channel configurations - MCP tools automatically use credentials from environment variables
- If MCP is not available or tool execution fails, fallback to Conversation API
Conversation API Usage (Fallback):
- Use the Conversation API endpoints for channel information (see endpoints above)
- Authentication: Use Basic Auth with CONVERSATION_KEY_ID and CONVERSATION_KEY_SECRET, or OAuth2
- Include required headers:
Authorization,Content-Type: application/json - For capability query, note it's asynchronous - results are delivered via webhook callbacks with trigger
CAPABILITY - App responses include channel configuration and credentials status
- Contact responses include
channel_identitiesarray showing all associated channels
Supported Channels
- WHATSAPP: WhatsApp Business messages - rich media, templates, interactive messages
- SMS: SMS text messages - universal, simple text
- RCS: Rich Communication Services - rich media, read receipts, typing indicators
- MESSENGER: Facebook Messenger - rich media, quick replies
- VIBERBM: Viber Business Messages - rich media, carousels
- MMS: Multimedia Messaging Service - images, videos
- INSTAGRAM: Instagram Direct Messages - rich media, stories
- TELEGRAM: Telegram messages - rich media, bots
- KAKAOTALK: KakaoTalk messages - rich media, plus friends
- KAKAOTALKCHAT: KakaoTalk chat channel (ConsultationTalk)
- LINE: LINE messages - rich media, stickers
- WECHAT: WeChat messages - rich media, mini programs
- APPLEBC: Apple Messages for Business - rich media, Apple Pay
Channel Capabilities
Each channel supports different message types:
- Text messages: All channels
- Rich media: Images, videos, audio (channel-dependent)
- Templates: Pre-approved message templates (channel-dependent)
- Interactive messages: Buttons, quick replies (channel-dependent)
- Location sharing: Some channels
- File attachments: Channel-dependent
Notes
- Prefer MCP tools if MCP Sinch is configured - use
list-conversation-appsfor app and channel information - Fallback to Conversation API if MCP is not configured or MCP tool execution fails
- Channel availability depends on app configuration and credentials
- Contacts can have multiple channels associated
- Some channels require specific setup and approval
- Capability query is asynchronous - use webhook callbacks to receive results
- Channel information is available in app responses and contact channel_identities
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.