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

zendesk-mcp

v1.0.0

Published

Zendesk MCP server for Ticketing and Help Center APIs

Readme

Zendesk MCP Server

A Model Context Protocol (MCP) server for integrating with Zendesk Ticketing and Help Center APIs.

Features

Ticketing (13 tools)

  • list_tickets - List all tickets with pagination and sorting
  • get_ticket - Get ticket details by ID
  • create_ticket - Create a new ticket
  • update_ticket - Update an existing ticket
  • delete_ticket - Delete a ticket
  • search_tickets - Search tickets using Zendesk query syntax
  • list_ticket_comments - Get comments on a ticket
  • add_ticket_comment - Add a comment to a ticket
  • list_users - List all users
  • get_user - Get user details
  • create_user - Create a new user
  • list_organizations - List organizations
  • list_groups - List agent groups

Help Center (7 tools)

  • list_articles - List Help Center articles
  • get_article - Get article details
  • create_article - Create a new article
  • update_article - Update an article
  • search_articles - Search articles
  • list_sections - List sections
  • list_categories - List categories

Installation

npm install zendesk-mcp

Or install globally:

npm install -g zendesk-mcp

Configuration

Set the following environment variables:

export ZENDESK_SUBDOMAIN=your-subdomain    # e.g., "yespark" for yespark.zendesk.com
export [email protected]
export ZENDESK_API_TOKEN=your-api-token

Getting an API Token

  1. Log in to your Zendesk account
  2. Go to Admin Center > Apps and Integrations > APIs > Zendesk API
  3. Click "Add API token"
  4. Copy the token (you won't be able to see it again)

Usage with Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "zendesk": {
      "command": "npx",
      "args": ["zendesk-mcp"],
      "env": {
        "ZENDESK_SUBDOMAIN": "your-subdomain",
        "ZENDESK_EMAIL": "[email protected]",
        "ZENDESK_API_TOKEN": "your-api-token"
      }
    }
  }
}

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run watch

# Test with MCP Inspector
npm run inspector

Examples

Search open tickets

Search for all open tickets assigned to the support group

Create a ticket

Create a ticket with subject "Login issue" and description "User cannot log in"

List Help Center articles

List all articles in the FAQ section

License

MIT