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

quickbooks-sync-mcp

v1.0.0

Published

MCP server that connects Claude and AI coding agents to QuickBooks Online. Automate invoice creation, expense tracking, bill payments, GL reconciliation, and financial reporting. Built with AI by Craftpipe

Readme

QuickBooks Sync

Automate invoicing, expense tracking, and financial reconciliation directly from Claude and AI coding agents.

npm version License: MIT TypeScript MCP

QuickBooks Sync is a Model Context Protocol server that bridges Claude and AI coding agents with QuickBooks Online. Create and manage invoices, track expenses, reconcile transactions, query chart of accounts, and generate financial reports—all through natural language commands and programmatic access. Built for accountants, bookkeepers, finance teams, and developers integrating QuickBooks automation into AI workflows.

Quick Start

Installation

npx quickbooks-sync-mcp

Claude Desktop Configuration

Add the following to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "quickbooks-sync-mcp": {
      "command": "npx",
      "args": ["-y", "quickbooks-sync-mcp"],
      "env": {
        "NODE_ENV": "production",
        "QBO_SANDBOX": "false",
        "QBO_CLIENT_ID": "your_client_id",
        "QBO_CLIENT_SECRET": "your_client_secret",
        "QBO_REFRESH_TOKEN": "your_refresh_token",
        "QBO_REALM_ID": "your_realm_id",
        "QBO_ENVIRONMENT": "production"
      }
    }
  }
}

Cursor Configuration

Add to .cursor/mcp_config.json:

{
  "mcpServers": {
    "quickbooks-sync-mcp": {
      "command": "npx",
      "args": ["-y", "quickbooks-sync-mcp"],
      "env": {
        "NODE_ENV": "production",
        "QBO_SANDBOX": "false",
        "QBO_CLIENT_ID": "your_client_id",
        "QBO_CLIENT_SECRET": "your_client_secret",
        "QBO_REFRESH_TOKEN": "your_refresh_token",
        "QBO_REALM_ID": "your_realm_id"
      }
    }
  }
}

Windsurf Configuration

Add to .windsurf/mcp_config.json:

{
  "mcpServers": {
    "quickbooks-sync-mcp": {
      "command": "npx",
      "args": ["-y", "quickbooks-sync-mcp"],
      "env": {
        "NODE_ENV": "production",
        "QBO_SANDBOX": "false",
        "QBO_CLIENT_ID": "your_client_id",
        "QBO_CLIENT_SECRET": "your_client_secret",
        "QBO_REFRESH_TOKEN": "your_refresh_token",
        "QBO_REALM_ID": "your_realm_id"
      }
    }
  }
}

Tools

| Tool | Description | |------|-------------| | create_invoice | Create a new invoice in QuickBooks with line items, tax, and customer details. Parameters: customerId, lineItems, dueDate, taxRate, memo. | | track_expense | Record an expense transaction with vendor, amount, category, and payment method. | | query_gl_accounts | Query the chart of accounts with filtering by account type (asset, liability, equity, revenue, expense). | | reconcile_transactions | Match and reconcile bank transactions with QuickBooks entries to ensure accuracy. | | get_financial_report | Generate financial reports including balance sheet, income statement, and cash flow analysis. | | search_transactions | Search transactions by date range, amount, vendor, customer, or account. | | update_invoice_status | Update invoice status (draft, sent, viewed, paid) and track payment progress. |

Free vs Pro

| Feature | Free | Pro | |---------|------|-----| | Create invoices | ✓ | ✓ | | Track expenses | ✓ | ✓ | | Query GL accounts | ✓ | ✓ | | Reconcile transactions | ✓ | ✓ | | Generate financial reports | ✓ | ✓ | | Search transactions | ✓ | ✓ | | Update invoice status | ✓ | ✓ | | Bulk invoice operations | ✗ | ✓ | | Audit trail & compliance logs | ✗ | ✓ | | Export statements (JSON/CSV) | ✗ | ✓ | | Priority support | ✗ | ✓ |

Get Pro

Unlock bulk operations, audit trails, and advanced reporting exports. Subscribe to Pro for €39/month at craftpipe.dev/pricing.

After purchasing, set your license key in your environment configuration:

{
  "env": {
    "PRO_LICENSE": "your_license_key_here"
  }
}

Configuration

| Environment Variable | Description | Required | Default | |----------------------|-------------|----------|---------| | QBO_CLIENT_ID | OAuth2 client ID from QuickBooks app settings | Yes | — | | QBO_CLIENT_SECRET | OAuth2 client secret from QuickBooks app settings | Yes | — | | QBO_REFRESH_TOKEN | OAuth2 refresh token for persistent authentication | Yes | — | | QBO_REALM_ID | QuickBooks company/realm ID | Yes | — | | QBO_ENVIRONMENT | API environment (production or sandbox) | No | production | | QBO_SANDBOX | Enable sandbox mode for testing (true or false) | No | false | | QBO_ACCESS_TOKEN | Current OAuth2 access token (auto-refreshed) | No | — | | QBO_TOKEN_EXPIRES_AT | Timestamp when access token expires (auto-managed) | No | — | | NODE_ENV | Node environment (production or development) | No | production | | PRO_LICENSE | Pro tier license key for premium features | No | — |

License

MIT License. See LICENSE for details.


Built with AI by Craftpipe

⭐ Pro Features

Upgrade to Pro for additional tools:

  • batch operations
  • audit log
  • data export

Get Procraftpipe.gumroad.com (€39/mo)

Set PRO_LICENSE=<your-key> environment variable to unlock premium tools.