Help us improve
Share bugs, ideas, or general feedback.
From sinch-claude-plugin
Accesses Sinch Conversation API for messaging across channels like SMS, WhatsApp, voice. Runs locally via npx subprocess. Requires secrets: app ID, key ID/secret, project ID, region.
npx claudepluginhub sinch/sinch-plugins --plugin sinch-claude-pluginCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"sinch": {
"command": "npx",
"args": [
"-y",
"@sinch/mcp"
],
"env": {
"CONVERSATION_APP_ID": "${CONVERSATION_APP_ID}",
"CONVERSATION_KEY_ID": "${CONVERSATION_KEY_ID}",
"CONVERSATION_REGION": "${CONVERSATION_REGION}",
"CONVERSATION_KEY_SECRET": "${CONVERSATION_KEY_SECRET}",
"CONVERSATION_PROJECT_ID": "${CONVERSATION_PROJECT_ID}"
}
}
}
}Replace placeholder values for: CONVERSATION_KEY_ID, CONVERSATION_KEY_SECRET
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
CONVERSATION_APP_ID=${CONVERSATION_APP_ID}CONVERSATION_KEY_ID=${CONVERSATION_KEY_ID}CONVERSATION_REGION=${CONVERSATION_REGION}CONVERSATION_KEY_SECRET=${CONVERSATION_KEY_SECRET}CONVERSATION_PROJECT_ID=${CONVERSATION_PROJECT_ID}Sensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.