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

@centry-digital/bukku-mcp

v2.0.3

Published

Bukku accounting API tools for Claude via Model Context Protocol

Readme

Bukku MCP Server

npm version

An MCP (Model Context Protocol) server that connects AI assistants to Bukku, a Malaysian accounting platform. This gives your AI the ability to read, create, and manage your accounting data — invoices, bills, payments, contacts, products, and more.

What can it do?

With this MCP server connected, you can ask your AI things like:

  • "List my unpaid sales invoices"
  • "Create an invoice for RM 5,000 to Acme Corp for consulting services"
  • "Show me all purchase bills from last month"
  • "Record a bank transfer of RM 10,000 from Maybank to CIMB"
  • "Create a new contact for my supplier"
  • "Upload this receipt and attach it to the purchase bill"

The server exposes 169 tools covering the full Bukku API:

| Category | Tools | What you can do | |----------|-------|-----------------| | Sales | 42 | Quotes, orders, delivery orders, invoices, credit notes, payments, refunds | | Purchases | 36 | Purchase orders, bills, credit notes, goods received notes, payments, refunds | | Banking | 18 | Money in, money out, bank transfers | | Contacts | 12 | Customers, suppliers, contact groups | | Products | 18 | Products, product bundles, product groups | | Accounting | 13 | Journal entries, chart of accounts | | Files | 3 | Upload and manage file attachments | | Organisation | 17 | Locations, tags, tag groups | | Reference Data | 10 | Tax codes, currencies, payment methods, terms, and more |

Quick Start

Prerequisites

Step 1: Get your Bukku API token

  1. Log into your Bukku account
  2. Go to Control Panel > Integrations > API Access
  3. Generate a new API token (or copy your existing one)
  4. Note your company subdomain — e.g. mycompany from mycompany.bukku.my

Step 2: Add to your AI client

Claude Desktop — open your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "bukku": {
      "command": "npx",
      "args": ["-y", "@centry-digital/bukku-mcp"],
      "env": {
        "BUKKU_API_TOKEN": "your-token-here",
        "BUKKU_COMPANY_SUBDOMAIN": "your-subdomain"
      }
    }
  }
}

Claude Code — add to your project or home .claude/settings.json:

{
  "mcpServers": {
    "bukku": {
      "command": "npx",
      "args": ["-y", "@centry-digital/bukku-mcp"],
      "env": {
        "BUKKU_API_TOKEN": "your-token-here",
        "BUKKU_COMPANY_SUBDOMAIN": "your-subdomain"
      }
    }
  }
}

Step 3: Restart your AI client

Quit and reopen your AI client. You're ready to go.

Installation

npx (recommended)

No installation needed — downloads and runs the latest version:

npx @centry-digital/bukku-mcp

npm global install

npm install -g @centry-digital/bukku-mcp

Then use bukku-mcp as the command in your AI client config instead of npx.

Configuration

| Variable | Required | Description | |----------|----------|-------------| | BUKKU_API_TOKEN | Yes | Your Bukku API token from Control Panel > Integrations > API Access | | BUKKU_COMPANY_SUBDOMAIN | Yes | Your company subdomain (e.g. mycompany from mycompany.bukku.my) |

Troubleshooting

"Configuration Error" on startup

  • Check that both BUKKU_API_TOKEN and BUKKU_COMPANY_SUBDOMAIN are set in your client config

"Token validation failed"

  • Your API token may be invalid or expired — regenerate at Control Panel > Integrations > API Access

Server doesn't appear in your AI client

  • Verify JSON syntax is correct (no trailing commas)
  • Restart your AI client after editing the config
  • Check Node.js v20+ is installed: node --version

Uninstalling

If you installed globally:

npm uninstall -g @centry-digital/bukku-mcp

Then remove the bukku entry from your AI client's MCP config file.

Related

License

MIT