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

pms-helpdesk-mcp

v1.2.0

Published

MCP server for CloudGo PMS HelpDesk — list, filter, search, and update tickets via VTiger OpenAPI

Readme

@cloudgo/pms-helpdesk-mcp

MCP server for CloudGo PMS HelpDesk — list, filter, search, and update tickets via VTiger OpenAPI.

Setup

Option 1: Install from git (recommended for team)

Add to your .mcp.json (in project root or ~/.claude/.mcp.json for global):

{
  "mcpServers": {
    "pms-helpdesk": {
      "command": "npx",
      "args": ["-y", "github:user/pms-helpdesk-mcp"],
      "env": {
        "PMS_URL": "https://pms.cloudgo.vn",
        "PMS_USERNAME": "your_username",
        "PMS_ACCESS_KEY": "your_access_key"
      }
    }
  }
}

Option 2: Install from npm (after publishing)

{
  "mcpServers": {
    "pms-helpdesk": {
      "command": "npx",
      "args": ["-y", "@cloudgo/pms-helpdesk-mcp"],
      "env": {
        "PMS_URL": "https://pms.cloudgo.vn",
        "PMS_USERNAME": "your_username",
        "PMS_ACCESS_KEY": "your_access_key"
      }
    }
  }
}

Option 3: Local development

{
  "mcpServers": {
    "pms-helpdesk": {
      "command": "npx",
      "args": ["tsx", ".claude/mcp-servers/pms-helpdesk/index.ts"],
      "env": {
        "PMS_URL": "https://pms.cloudgo.vn",
        "PMS_USERNAME": "your_username",
        "PMS_ACCESS_KEY": "your_access_key"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PMS_URL | Yes | PMS base URL (e.g. https://pms.cloudgo.vn) | | PMS_USERNAME | Yes | Your PMS login username | | PMS_ACCESS_KEY | Yes | Your PMS access key (found in My Preferences) |

Tools

pms_list_tickets

List HelpDesk tickets with pagination.

| Param | Type | Default | Description | |-------|------|---------|-------------| | offset | number | 0 | Pagination offset | | max_rows | number | 20 | Max rows to return |

pms_get_ticket

Get full detail of a single ticket.

| Param | Type | Description | |-------|------|-------------| | record_id | string | Ticket record ID (e.g. "17x12345") |

pms_search_tickets

Search tickets by keyword.

| Param | Type | Default | Description | |-------|------|---------|-------------| | keyword | string | — | Search keyword | | offset | number | 0 | Pagination offset | | max_rows | number | 20 | Max rows |

pms_filter_tickets

Filter tickets with advanced conditions (AND logic).

| Param | Type | Description | |-------|------|-------------| | filters | array | Array of {name, value, operator} objects | | offset | number | Pagination offset (default 0) | | max_rows | number | Max rows (default 20) | | sort_column | string | Optional sort column | | sort_order | ASC/DESC | Optional sort order |

Filter operators: e (equals), n (not equal), c (contains), k (not contains), s (starts with), ew (ends with), g (greater than), l (less than), h (after/>=), m (before/<=), reference_filter (related record)

Example:

{
  "filters": [
    {"name": "ticketstatus", "value": "Open", "operator": "e"},
    {"name": "ticketpriorities", "value": "High", "operator": "e"}
  ]
}

pms_update_ticket

Update ticket fields.

| Param | Type | Description | |-------|------|-------------| | record_id | string | Ticket record ID | | data | object | Key-value pairs of fields to update |

Example:

{
  "record_id": "17x12345",
  "data": {
    "ticketstatus": "Closed",
    "solution": "Issue resolved"
  }
}

Publishing

# Build
npm run build

# Publish to npm (scoped)
npm publish --access public

# Or publish to GitHub Packages
npm publish --registry=https://npm.pkg.github.com