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

@wellforce/zendesk-mcp

v1.1.0

Published

Zendesk MCP server for Claude Desktop — manage tickets, users, orgs, and more via natural language

Downloads

285

Readme

@wellforce/zendesk-mcp

A Zendesk MCP server for Claude Desktop. Gives Claude access to 41 Zendesk tools — manage tickets, users, organizations, and more through natural language.

Installation

Add to your Claude Desktop config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "zendesk": {
      "command": "npx",
      "args": ["-y", "@wellforce/zendesk-mcp"],
      "env": {
        "ZENDESK_SUBDOMAIN": "yourcompany",
        "ZENDESK_EMAIL": "[email protected]",
        "ZENDESK_TOKEN": "your_api_token"
      }
    }
  }
}

Restart Claude Desktop. You should see a hammer icon with 41 tools available.

Getting Your API Token

  1. Log into Zendesk as an admin
  2. Go to Admin Center > Apps and Integrations > Zendesk API
  3. Click Add API token
  4. Copy the token — you won't be able to see it again

Environment Variables

| Variable | Description | Example | |----------|-------------|---------| | ZENDESK_SUBDOMAIN | Your Zendesk subdomain | acme (from acme.zendesk.com) | | ZENDESK_EMAIL | Your Zendesk agent email | [email protected] | | ZENDESK_TOKEN | Your Zendesk API token | See above |

Available Tools (41)

Tickets

  • zendesk_list_tickets — List tickets with status/assignee/requester filters
  • zendesk_get_ticket — Get a single ticket by ID
  • zendesk_create_ticket — Create a new ticket
  • zendesk_update_ticket — Update ticket properties
  • zendesk_delete_ticket — Delete a ticket (soft delete)

Comments

  • zendesk_list_comments — List all comments on a ticket
  • zendesk_add_comment — Add a public reply or internal note

Users

  • zendesk_list_users — List users with optional role filter
  • zendesk_get_user — Get a user by ID
  • zendesk_create_user — Create a new user
  • zendesk_update_user — Update user properties
  • zendesk_delete_user — Delete a user (soft delete)

Organizations

  • zendesk_list_organizations — List all organizations
  • zendesk_get_organization — Get an organization by ID
  • zendesk_create_organization — Create a new organization
  • zendesk_update_organization — Update organization properties
  • zendesk_delete_organization — Delete an organization

Groups

  • zendesk_list_groups — List all groups
  • zendesk_get_group — Get a group by ID
  • zendesk_create_group — Create a new group
  • zendesk_update_group — Update group properties
  • zendesk_delete_group — Delete a group

Views

  • zendesk_list_views — List all views
  • zendesk_get_view — Get a view by ID
  • zendesk_list_view_tickets — List tickets in a view
  • zendesk_count_view_tickets — Count tickets in a view

Macros

  • zendesk_list_macros — List all macros
  • zendesk_get_macro — Get a macro by ID
  • zendesk_apply_macro — Apply a macro to a ticket

Triggers

  • zendesk_list_triggers — List all triggers
  • zendesk_get_trigger — Get a trigger by ID
  • zendesk_create_trigger — Create a new trigger
  • zendesk_update_trigger — Update trigger properties
  • zendesk_delete_trigger — Delete a trigger

Automations

  • zendesk_list_automations — List all automations
  • zendesk_get_automation — Get an automation by ID
  • zendesk_create_automation — Create a new automation
  • zendesk_update_automation — Update automation properties
  • zendesk_delete_automation — Delete an automation

Search

  • zendesk_search — Search across tickets, users, and organizations

Auth

  • zendesk_whoami — Check current authenticated identity

Development

git clone https://github.com/wellforce/zendesk-mcp.git
cd zendesk-mcp
npm install
npm run build
npm test
# Watch mode
npm run dev

# Test with MCP Inspector
npm run inspect

License

MIT