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

@mindstone-engineering/mcp-server-zendesk

v0.3.0

Published

Zendesk MCP server for Model Context Protocol hosts

Downloads

400

Readme

@mindstone-engineering/mcp-server-zendesk

npm version License: FSL-1.1-MIT

Zendesk Support MCP server for Model Context Protocol hosts.

Requirements

  • Node.js 20+
  • npm

Quick Start

Install & build

cd <path-to-repo>/connectors/zendesk
npm install
npm run build

npx (once published)

npx -y @mindstone-engineering/mcp-server-zendesk

Local

node dist/index.js

Configuration

Environment variables

  • ZENDESK_CONFIG_PATH — path to the config directory that contains accounts.json and credentials/
  • ZENDESK_CLIENT_ID — optional OAuth client ID for legacy token refresh flows
  • ZENDESK_CLIENT_SECRET — optional OAuth client secret for legacy token refresh flows
  • MCP_HOST_BRIDGE_STATE — optional path to a host bridge state file used for credential management
  • MINDSTONE_REBEL_BRIDGE_STATE — backwards-compatible alias for MCP_HOST_BRIDGE_STATE

Standalone config directory

Create a config directory and accounts.json file:

mkdir -p ~/.mcp/zendesk
cat > ~/.mcp/zendesk/accounts.json <<'EOF'
{
  "accounts": [
    {
      "subdomain": "yourcompany",
      "email": "[email protected]",
      "apiToken": "your-zendesk-api-token"
    }
  ],
  "defaultSubdomain": "yourcompany"
}
EOF

Host configuration examples

Claude Desktop / Cursor

{
  "mcpServers": {
    "Zendesk": {
      "command": "npx",
      "args": ["-y", "@mindstone-engineering/mcp-server-zendesk"],
      "env": {
        "ZENDESK_CONFIG_PATH": "~/.mcp/zendesk"
      }
    }
  }
}

Local development (no npm publish needed)

{
  "mcpServers": {
    "Zendesk": {
      "command": "node",
      "args": ["<path-to-repo>/connectors/zendesk/dist/index.js"],
      "env": {
        "ZENDESK_CONFIG_PATH": "~/.mcp/zendesk"
      }
    }
  }
}

Mindstone Rebel

"Zendesk": {
  "name": "Zendesk",
  "type": "stdio",
  "command": "node",
  "args": ["<path-to-repo>/connectors/zendesk/dist/index.js"],
  "env": {
    "ZENDESK_CONFIG_PATH": "~/Library/Application Support/mindstone-rebel/mcp/zendesk",
    "MCP_HOST_BRIDGE_STATE": "~/Library/Application Support/mindstone-rebel/mcp/rebel-inbox-bridge.json"
  },
  "description": "Zendesk support tickets...",
  "catalogId": "bundled-zendesk"
}

Tools (20)

Account management

  • list_zendesk_accounts — List connected accounts with auth status
  • remove_zendesk_account — Disconnect a Zendesk account
  • authenticate_zendesk_account — Connect using API token

Tickets

  • search_zendesk_tickets — Search with Zendesk query syntax (max 1000 results)
  • export_zendesk_tickets — Cursor-based export with no 1000-result limit
  • get_zendesk_ticket — Get single ticket by ID
  • get_zendesk_tickets_by_ids — Batch-fetch multiple tickets
  • create_zendesk_ticket — Create a new ticket
  • update_zendesk_ticket — Update ticket fields, status, or add comment

Users

  • search_zendesk_users — Search by name, email, or query
  • get_zendesk_user — Get user by ID

Comments

  • list_zendesk_ticket_comments — List conversation thread with author resolution
  • add_zendesk_ticket_comment — Add public reply or internal note

Discovery

  • list_zendesk_groups — List agent groups
  • list_zendesk_ticket_fields — List ticket fields including custom fields
  • list_zendesk_views — List saved ticket views
  • list_zendesk_organizations — List organizations

Macros

  • list_zendesk_macros — List or search macros
  • get_zendesk_macro — Get macro details
  • apply_zendesk_macro — Preview and apply macro to ticket

Smoke test

Ask your MCP host to run:

List my open Zendesk tickets

If that fails, confirm that:

  • dist/index.js exists (run npm run build)
  • ZENDESK_CONFIG_PATH points to a readable directory
  • accounts.json contains a valid subdomain, email, and API token

Troubleshooting

| Symptom | Likely cause | Fix | |---------|--------------|-----| | Connector fails to start | Not built yet | Run npm install && npm run build | | Auth error or empty results | Wrong config path or invalid credentials | Check ZENDESK_CONFIG_PATH and accounts.json | | MCP host reports protocol issues | Stdout noise in stdio session | Ensure no console.log calls (all logging uses console.error) |

Licence

FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. The software converts to MIT licence on 2030-04-08.