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

suporta-mcp

v1.1.1

Published

MCP server for Suporta Helpdesk — manage tickets from Claude Code

Downloads

422

Readme

Suporta MCP Server

Connect Claude Code to your Suporta helpdesk — manage tickets, search, and post replies directly from your editor.

Works with any project (Laravel, Vue, React, Node, etc.).


Quick Setup (2 minutes)

1. Generate an API Token

  1. Open your Suporta instance (e.g. https://bitpeak.suportahub.com)
  2. Go to Settings → API Tokens
  3. Click Generate New Token
  4. Enter a name (e.g. Claude MCP)
  5. Select the projects you want Claude to access
  6. Click Generate and copy the token immediately — it's shown only once

2. Add to your project

Create .mcp.json in your project root:

{
  "mcpServers": {
    "suporta": {
      "command": "npx",
      "args": ["-y", "suporta-mcp"],
      "env": {
        "SUPORTA_URL": "https://your-tenant.suportahub.com",
        "SUPORTA_TOKEN": "your-api-token-here"
      }
    }
  }
}

3. Restart Claude Code

After saving .mcp.json, restart Claude Code (or run /mcp to reload servers). Verify with:

"who am I on Suporta?"

Claude should respond with your name and role. That's it — you're connected.


Available Tools

| Tool | Description | Example prompt | |------|-------------|----------------| | who-am-i | Verify your connection | "who am I on Suporta?" | | list-projects | List all accessible projects | "show my projects" | | get-ticket | Fetch ticket details by slug or URL | "get ticket 1035-bug-ticket" or paste the ticket URL | | list-my-tickets | List your assigned tickets | "show my open tickets" | | search-tickets | Search by keyword | "search for tickets about login" | | create-ticket | Create a new ticket | "create a P1 ticket in project bitpeak about login bug" | | update-ticket | Update status, priority, assignees, etc. | "set ticket 1035-bug-ticket to Closed" | | post-ticket-reply | Post a reply (internal or client-visible) | "post an internal note on ticket 1035-bug-ticket" |


Usage Examples

Fetch a ticket from URL:

Paste https://bitpeak.suportahub.com/ticket/1035-bug-ticket and Claude will extract the slug and fetch details.

Filter your tickets:

"show my overdue tickets" "list my open tickets due this week"

Create a ticket:

"create a ticket in project bitpeak: Login page returns 500 on invalid email"

Update a ticket:

"set ticket 1035-bug-ticket priority to P1 and assign to user 14" "close ticket 1035-bug-ticket"

Implement a ticket:

"fetch ticket 1035-bug-ticket and implement it"

Claude will read the ticket, analyze the codebase, create a branch, implement the changes, and post a summary back on the ticket.

Post an internal note:

"post an internal note on ticket 1035-bug-ticket saying the fix is deployed"


Multiple Projects / Tenants

Each project gets its own .mcp.json with its own token and URL. This means:

  • Project A → connects to https://clienta.suportahub.com with token scoped to Project A's projects
  • Project B → connects to https://clientb.suportahub.com with a different token

Tokens are scoped to specific projects at generation time, so each developer only sees what they need.


Troubleshooting

"Not connected" error

  • Check that SUPORTA_URL and SUPORTA_TOKEN are set in .mcp.json
  • Make sure the token hasn't been deleted in Settings → API Tokens
  • Restart Claude Code after changing .mcp.json

"API 401" error

  • Your token is invalid or expired. Generate a new one in Settings → API Tokens

Tools not showing up

  • Run /mcp in Claude Code to check server status
  • Verify node is available in your PATH
  • Make sure you have Node.js 18+ installed