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

@alfe.ai/connectwise-psa-mcp

v0.1.0

Published

ConnectWise PSA MCP server with explicit Alfe connection selection

Readme

ConnectWise PSA MCP

Runtime-neutral stdio MCP server for ConnectWise PSA (formerly Manage). It runs under OpenClaw, Hermes, or Claude Code through the Alfe integration manifest.

Launch the released package with npx -y @alfe.ai/[email protected]. Node 22+ and an existing alfe login configuration are required. There are no provider-credential environment variables or separate login files.

Create a ConnectWise PSA connection in Alfe Connections with the final PSA API server origin, company ID, and an API member's public/private keys. The Alfe service supplies its registered PSA ClientID. For cloud tenants, use your region's API hostname (for example https://api-na.myconnectwise.net), rather than a browser deep link. On-premises deployments require a publicly resolvable HTTPS hostname and a trusted TLS certificate. The runtime appends /v4_6_release/apis/3.0 and refuses redirects and non-public destinations.

Call connectwise_psa_list_connections first. Every provider operation requires the selected connectionId; it never silently chooses a default account. Credentials are resolved again on every operation, so changing keys or removing access applies to the next call without restarting the server.

Available tools:

  • Connection discovery
  • List companies, contacts, service boards, priorities, members, and tickets
  • Get a company, contact, or ticket
  • List a board's statuses and a ticket's direct notes
  • Create a service ticket, update selected fields, and append a note

List tools return a single page (25 rows by default, maximum 100), with page, pageSize, conditions, and orderBy. Notes default to internal-only. Discussion/resolution notes may be customer-visible; select visibility deliberately. Writes are never automatically retried: after a timeout, read the ticket or notes to check whether the write succeeded before repeating it. The API member's PSA security role controls which operations are allowed.

API references and verification status

On 2026-09-08 the REST reference and Developer Guide required an approved Developer Network login. The implementation uses the PSA REST 3.0 resource contract, with local HTTP-contract/security/MCP-exchange tests; those tests do not constitute verification against a customer PSA server. An approved PSA sandbox should verify company/board/status reads, create a disposable ticket, update it, and add an internal note before release. Version-specific codebase paths other than /v4_6_release are not supported by this release.

Development

pnpm --filter @alfe.ai/connectwise-psa-mcp typecheck
pnpm --filter @alfe.ai/connectwise-psa-mcp lint
pnpm --filter @alfe.ai/connectwise-psa-mcp test
pnpm --filter @alfe.ai/connectwise-psa-mcp build