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

teamgps-csat-mcp

v1.0.0

Published

MCP server for Team GPS CSAT — partner sentiment analysis, engineer scorecards, and coaching insights for MSPs

Readme

📊 Team GPS CSAT MCP Server

An MCP (Model Context Protocol) server that connects Claude to your Team GPS CSAT data — bringing partner sentiment analysis, engineer scorecards, and coaching insights directly into your AI conversations.

Built for MSPs. Instead of logging into the Team GPS portal to read numbers, you ask Claude questions and get answers with context and recommendations.


⚡ Quick Start (No Install Required)

The easiest way to use this server is via npx. You don't need to download this repository or manually build it.

  1. Get your Team GPS API Key: Admin Settings → Integrations → Public APIs → Copy Key.
  2. Configure Claude Desktop: Open your claude_desktop_config.json and add:
{
  "mcpServers": {
    "teamgps-csat": {
      "command": "npx",
      "args": ["-y", "teamgps-csat-mcp"],
      "env": {
        "TEAMGPS_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
  1. Restart Claude: That's it. Claude will now have access to your CSAT tools.

🚀 What You Can Do

Once installed, you can ask Claude things like:

  • "Summarise MSP Corp's CSAT for the last 90 days"
  • "Which partners are at risk this month?"
  • "Show me all unreviewed neutral and negative reviews"
  • "How is Hampton performing across all his clients?"
  • "Search all reviews for mentions of attendance"
  • "Give me an org-wide CSAT digest for last month"

🛠️ Performance & Tools

| Tool | What It Does | |------|-------------| | list_companies | Lists all partner companies with review counts and scores | | get_partner_summary | Full CSAT analysis for one partner: score, trend, comments, notes | | list_at_risk_partners| Scans all partners and flags those with declining scores | | get_engineer_scorecard| Performance scorecard for a specific engineer | | find_unreviewed_concerns| All Neutral/Negative reviews not yet reviewed by management | | get_period_summary | Org-wide digest — useful for weekly reporting | | search_reviews | Search all comments and notes for a keyword (e.g. "attendance") |


📦 Developer: Publishing to npm

If you want to contribute or publish your own version publicly:

1. Requirements

  • Create an account on npmjs.com
  • Ensure yourself are logged in locally: npm login

2. Prepare the Code

  • The folder structure should have source files in src/.
  • src/index.ts must have the shebang line at the very top: #!/usr/bin/env node.

3. Build & Publish

npm install
npm run build
npm publish --access public

Once published, anyone can use it with the npx command shown in the Quick Start section.


📁 Project Structure

teamgps-csat-mcp/
├── package.json        # npm config, build scripts
├── tsconfig.json       # TypeScript config
├── README.md           # This guide
└── src/
    ├── types.ts        # Shared interfaces
    ├── api-client.ts   # HTTP layer + pagination
    ├── enricher.ts     # Data processing & analytics
    ├── date-utils.ts   # Period resolver
    └── index.ts        # MCP server core (shebang included)

📄 License

MIT © Scout Kalra — IT by Design. Part of an MSP tooling initiative to bring AI-native integrations to the managed services industry.