npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sinch-engage/mcp-server

v0.1.4

Published

Client-side MCP server for LLM clients

Downloads

91

Readme

Sinch Engage MCP Server

Latest Release

This repository contains the source code for the Sinch Engage (Sinch MessageMedia in AU) MCP server, which provides Sinch Engage APIs as MCP tools.

Tools Overview

Here is the list of tools available in the MCP server (all the phone numbers must be provided in E.164 format, e.g., +61400000000 for Australia).

Messaging

| Tool | Description | Category | Mode | |------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|------------| | sendMessage | Send SMS to a mobile number | messaging | write |

Reporting

| Tool | Description | Category | Mode | |---------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|------------| | getDetailedMessageReport | Generates a detailed report of sent and received messages for a specified date range, with optional filters for direction, accounts, metadata, and grouping. | reporting | read | | getSummaryMessageReport | Generates a summary report of sent and received messages for a specified date range, with optional filters for direction, accounts, and grouping. | reporting | read | | getSummaryInsightMessageReport | Fetches a pre-compiled summary report of sent and received messages for a specified date range, with optional filters for direction, accounts, and grouping. | reporting | read | | getAsyncReportStatus | Retrieves the status of an asynchronous report request by report_id. | reporting | read | | getAsyncReportFields | Retrieves the list of available fields for asynchronous detailed report export. | reporting | read | | requestAsyncDetailedMessageReport | Requests an asynchronous detailed report of sent and received messages for a specified date range, with delivery options for report format and destination. | reporting | read |

Contacts

| Tool | Description | Category | Mode | |-------------------------------|---------------------------------------------------------------------------------------------------|---------------|------------| | getContactGroups | Retrieves a paginated list of contact groups (lists) associated with the account. | reporting | read | | getContactGroupDetails | Retrieves details for a specific contact group (list) identified by group_id. | reporting | read | | getContactWithSearch | Retrieves a list of contacts, filterable by group, phone number, name, and channel type. | reporting | read | | createContactGroup | Creates a new contact group (list) with the specified name and optional alias. | reporting | write | | createContact | Creates a new contact with the specified details. | reporting | write | | updateContact | Updates an existing contact identified by contact_id with new details. | reporting | write | | deleteContactGroup | Deletes a specific contact group (list) identified by group_id. | reporting | delete |

Getting Started

Prerequisites

API credentials

To use the APIs used by the MCP tools, you will need the following credentials:

MCP Server Configuration

The Sinch Engage MCP server is available as an NPM package to the executed. Here is how to set it up in the Claude Desktop configuration file (claude_desktop_config.json). Remember to fill in the environment variables with your own credentials and the region (currently supported EU & AU):

{
  "mcpServers": {
    "Sinch Engage": {
      "command": "npx",
      "args": [
        "-y",
        "@sinch-engage/mcp-server"
      ],
      "env": {
        "SINCH_ENGAGE_API_KEY": "<your-key>",
        "SINCH_ENGAGE_API_SECRET": "<your-secret>",
        "SINCH_ENGAGE_REGION": "<region>",
        "MCP_TOOL_CATEGORIES": "reporting, contacts, messaging",
        "MCP_TOOL_MODES": "read, write, delete"
      }
    }
  }
}

Running the MCP Server locally

Option 1: Start the MCP server with stdio using Claude Desktop

To run the MCP server locally with Claude Desktop, you will need to clone the repository and build the MCP server. This option is useful for local development and testing.

Step 1: Clone the repository

git clone https://github.com/messagemedia/sinch-engage-mcp-server.git

Step 2: Install dependencies

cd sinch-engage-mcp-server
npm install

Step 3: Setup Claude Desktop configuration

Here is an example of how to configure the MCP server in the Claude Desktop configuration file (claude_desktop_config.json) where you can provide your Sinch Engage credentials and region (EU or AU):

{
  "mcpServers": {
    "Sinch Engage": {
      "command": "node",
      "args": ["/path/to/sinch-engage-mcp-server/src/index.js"],
      "env": {
        "SINCH_ENGAGE_API_KEY": "<your-key>",
        "SINCH_ENGAGE_API_SECRET": "<your-secret>",
        "SINCH_ENGAGE_REGION": "<region>",
        "MCP_TOOL_CATEGORIES": "reporting, contacts, messaging",
        "MCP_TOOL_MODES": "read, write, delete"
      }
    }
  }
}

Step 4: (Optional) Filter the tools available in the MCP server

Too many tools mean bigger context, mean higher tokens usage and more confusion for the LLM to select the right tool to use. You can filter the tools that are available in the MCP server by providing MCP_TOOL_CATEGORIES in Claude Desktop configuration options. If you want to filter tool by permissions, you can use MCP_TOOL_MODES to only choose tools that can either read, write or delete data or any combination of them