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 🙏

© 2026 – Pkg Stats / Ryan Hefner

suarify-mcp-server

v0.1.7

Published

Suarify MCP Server for voice calling and lead management

Downloads

248

Readme

Suarify MCP Server

Suarify Logo This is a Model Context Protocol (MCP) server for Suarify, providing tools for AI agents to interact with Suarify's voice calling and lead management platform.

Suarify is an AI voice automation platform for building and routing SIP-integrated conversational agents via programmable endpoints which allows platform to configure AI inbound and outbound calls.

Features

  • Voice Calls: Initiate outbound calls and configure inbound settings.
  • Lead Management: CRUD operations for leads and bulk uploads.
  • Agent Configuration: Manage AI voice agents and phone configurations.
  • Modern MCP Design: Returns structuredContent for LLM efficiency and uses standardized naming.

Prerequisites

Configuration

Set the following environment variables:

  • SUARIFY_API_KEY: (Required) Your API key for authentication. Register free account credit at https://suarify.my/register-new-user and then developer portal
  • SUARIFY_BASE_URL: (Optional) Defaults to https://suarify1.my.

Setup in AI Clients

Common mcp (cursor, codex, claudecode ,etc)

Add the following to your ~/.mcp/config.json or equivalent IDE( antigravity, cursor, codex, claudecode ,etc) or terminal cli

Claude Desktop

Add the following to your claude_desktop_config.json (usually located in %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

export SUARIFY_BASE_URL="https://suarify1.my"
export SUARIFY_API_KEY="sk_suarify_xxxxx_c2U5vTQ2MEfaMm8Iwa8gwN0l"

$env:SUARIFY_BASE_URL = "https://suarify1.my"
$env:SUARIFY_API_KEY = "sk_suarify_xxxxx_c2U5vTQ2MEfaMm8Iwa8gwN0l"


{
  "mcpServers": {
    "suarify": {
      "command": "npx",
      "args": ["-y", "suarify-mcp-server"],
      "env": { 
        
        "SUARIFY_BASE_URL": "https://suarify1.my",
        "SUARIFY_API_KEY": "sk_suarify_xxxxx_c2U5vTQ2MEfaMm8Iwa8gwN0l"
      }
    }
  }
}

or


{
  "mcpServers": {
   "suarify-local": {
      "command": "node",
      "args": [
        "c:/Users/Acer/OneDrive/Documents/GitHub/suarify-mcp/index.js"
      ],
      "env": {
        "SUARIFY_BASE_URL": "https://suarify1.my",
        "SUARIFY_API_KEY": "sk_suarify_xxxxx_c2U5vTQ2MEfaMm8Iwa8gwN0l"
      }
    },
  }
}
  

Cursor

  1. Go to Settings -> Features -> MCP.
  2. Click + Add New MCP Server.
  3. Name: Suarify.
  4. Type: command.
  5. Command: npx -y suarify-mcp-server.
  6. Add environment variable SUARIFY_API_KEY with your key.

Usage

Local Development

  1. Install dependencies:
    npm install
  2. Run tests:
    npm test
  3. Start the server (stdio transport):
    export SUARIFY_API_KEY=your_key_here
    node index.js

Running with Docker

  1. Build the image:

    docker build -t suarify-mcp .
  2. Run the container:

    docker run -e SUARIFY_API_KEY=your_key_here suarify-mcp
  3. Run the container as mcp server:

{ "mcpServers": { "suarify-mcp": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "SUARIFY_API_KEY=your_key_here", "suarify-mcp" ] } } }


## Tools Overview

All tools are prefixed with `suarify_` and use `snake_case`.

| Tool Name | Description |
|-----------|-------------|
| `suarify_initiate_call` | Start a simple voice call. |
| `suarify_do_outbound_call` | Detailed outbound call with validation. |
| `suarify_setup_inbound_settings` | Configure AI behavior for inbound calls. |
| `suarify_list_leads` / `suarify_create_lead` | Manage your lead database. |
| `suarify_list_user_agents` | Retrieve AI voice agents. |
| `suarify_get_outbound_call_logs` | Fetch historical call data. |

## Development

The project uses Jest for unit testing. Tool logic is extracted into a `handlers` object for easy isolation.

```bash
npm test