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

pluto-mcp-server

v0.1.1

Published

Model Context Protocol server for Pluto Suite — query and act on your books from an AI assistant.

Readme

Pluto MCP server

A Model Context Protocol server that lets an AI assistant (Claude Desktop, Cursor, ChatGPT, …) read and act on your Pluto Suite books.

It's a thin bridge onto the Pluto public API: every tool call is an authenticated request to https://api.plutosuite.com using your plt_ API key. The key is business-scoped and subject to the public-API allowlist + RBAC (a read key can only read; a write key can create).

Tools

Read: list_invoices, get_invoice, list_receipts, list_transactions, list_trips, list_customers, list_vendors, list_bills, list_jobs, get_report (summary / P&L / GST / cash flow). Write (needs a write-scoped key): create_customer, create_invoice.

Setup

  1. In Pluto → Settings → Developers, create an API key (read or write) and copy the plt_… value. It is shown once.

  2. Add this to your assistant's MCP config. For Claude Desktop that is claude_desktop_config.json; for Cursor, the same block under mcpServers. Restart the app.

    {
      "mcpServers": {
        "pluto": {
          "command": "npx",
          "args": ["-y", "pluto-mcp-server"],
          "env": { "PLUTO_API_KEY": "plt_your_key_here" }
        }
      }
    }

    No install or build step: npx fetches the package on first run.

  3. Ask away — e.g. “What's my net income this month?”, “List unpaid invoices”, “Create a customer named Acme Corp.”

Your key never leaves your machine. It sits in the env block above, which your assistant reads locally and sends only to https://api.plutosuite.com.

From source (contributors)

npm install && npm run build

then point command at node and args at the absolute path of dist/index.js.

Publishing (maintainers)

The package is publish-ready (files = dist + README + LICENSE; publishConfig.access = public).

cd mcp-server
npm pack --dry-run       # MUST list dist/index.js — see below
npm login                # one-time, your npm account
npm publish              # prepublishOnly builds first, then ships

prepublishOnly runs npm run build, so the compiled output cannot be forgotten. That matters: files ships dist, dist is gitignored, and before that hook existed a publish produced a tarball of three files with no code in it and a bin pointing at nothing. npm pack --dry-run does NOT run prepublishOnly, so it lists dist only if you have built locally — on a clean checkout an empty listing there is expected, and the real check is the file list npm prints immediately before it uploads.

Bump version in package.json before each publish (npm version patch|minor).

Config

| Env | Required | Default | |-----|----------|---------| | PLUTO_API_KEY | yes | — | | PLUTO_API_BASE | no | https://api.plutosuite.com |

Notes

  • Read keys map to ACCOUNTANT, write keys to ADMIN — endpoint RBAC still applies, and billing/team/payroll/settings are never reachable via an API key.
  • Run npm run dev to iterate with tsx without building.