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

@andrewconnell/senja-mcp

v1.0.0

Published

MCP server for the Senja testimonial API

Downloads

42

Readme

MCP Server for Senja (unofficial)

Collect, Manage and Share Testimonials - The easiest way to collect testimonials and add them to your website. Get started for free.

@andrewconnell/senja-mcp@next @andrewconnell/senja-mcp@latest @andrewconnell/senja-mcp@next

An MCP (Model Context Protocol) server for the Senja testimonial API. This server allows AI assistants like Claude to interact with your Senja testimonials through standardized MCP tools.

Features

  • List testimonials with filtering by approval status, rating, type, integration source, tags, and language
  • Get a specific testimonial by ID
  • Create new testimonials with full support for customer details, ratings, tags, and media

Prerequisites

  • Node.js 18+
  • A Senja account on the Starter or Pro plan
  • A Senja API key (available from the Automate section in your Senja dashboard)

Setup

  1. Clone this repository:

    git clone https://github.com/andrewconnell/senja-mcp.git
    cd senja-mcp
  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build

Configuration

Claude Desktop

Add the following to your Claude Desktop configuration file (claude_desktop_config.json):

{
  "mcpServers": {
    "senja": {
      "command": "node",
      "args": ["/path/to/senja-mcp/lib/index.js"],
      "env": {
        "SENJA_API_KEY": "your-senja-api-key"
      }
    }
  }
}

Claude Code

Add the following to your Claude Code MCP settings:

{
  "mcpServers": {
    "senja": {
      "command": "node",
      "args": ["/path/to/senja-mcp/lib/index.js"],
      "env": {
        "SENJA_API_KEY": "your-senja-api-key"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | | --------------- | -------- | -------------------- | | SENJA_API_KEY | Yes | Your Senja API key |

Available Tools

list_testimonials

Retrieve testimonials with optional filtering and sorting.

Parameters:

  • sort — Sort by date or rating (default: date)
  • order — Sort direction: asc or desc (default: desc)
  • approved — Filter by approval status
  • rating — Filter by star rating (1-5)
  • type — Filter by type: text or video
  • integration — Filter by source (e.g., twitter, google, linkedin)
  • tags — Filter by tag names
  • lang — Filter by language (ISO 639 code)
  • limit — Number of results (1-1000, default: 100)
  • page — Page number for pagination

get_testimonial

Retrieve a specific testimonial by ID.

Parameters:

  • id — The testimonial ID (required)

create_testimonial

Create a new testimonial.

Parameters:

  • type — Testimonial type: text or video (required)
  • customer_name — Name of the customer (required)
  • title — Testimonial title/headline
  • text — Testimonial text content
  • rating — Star rating (1-5)
  • url — Source URL
  • date — Date in ISO 8601 format
  • approved — Whether the testimonial is approved
  • customer_email — Customer email
  • customer_avatar — Customer avatar URL
  • customer_company — Customer company name
  • customer_tagline — Customer tagline or job title
  • customer_website — Customer website URL
  • integration — Integration source identifier
  • tags — Tags to apply
  • video_url — Video URL (for video testimonials)

License

MIT