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

invo-gen-mcp

v1.0.5

Published

MCP server for InvoGen — invoke invoices, expenses, bills, and reports from Claude Desktop

Downloads

59

Readme

invosquare-mcp

MCP (Model Context Protocol) server for InvoSquare — connect Claude Desktop to your invoicing and accounting data.

What it does

Gives Claude direct access to your InvoSquare business data so you can ask questions and take actions in natural language:

  • List, create, and update invoices
  • Record payments and send invoices
  • Manage customers and vendors
  • Track expenses and bills
  • Pull financial reports (P&L, cash flow, outstanding balances)

Requirements

  • Node.js 20+
  • An InvoSquare account with an API token (Settings → Integrations → API Tokens)
  • InvoSquare backend running (self-hosted or cloud)

Installation

Install globally via npm

npm install -g invosquare-mcp

Configure Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "invosquare": {
      "command": "invosquare-mcp",
      "env": {
        "INVOSQUARE_TOKEN": "isk_your_token_here",
        "INVOSQUARE_API_URL": "https://your-api-url.com"
      }
    }
  }
}

Then restart Claude Desktop.

Using npx (no install)

{
  "mcpServers": {
    "invosquare": {
      "command": "npx",
      "args": ["invosquare-mcp"],
      "env": {
        "INVOSQUARE_TOKEN": "isk_your_token_here",
        "INVOSQUARE_API_URL": "https://your-api-url.com"
      }
    }
  }
}

Environment variables

| Variable | Required | Default | Description | |---|---|---|---| | INVOSQUARE_TOKEN | Yes | — | API token from InvoSquare Settings → Integrations | | INVOSQUARE_API_URL | No | https://api.invosquare.com | Base URL for your InvoSquare backend |

Getting an API token

  1. Log in to InvoSquare
  2. Go to Settings → Integrations
  3. Under API Tokens, click Generate Token
  4. Give it a name (e.g. "Claude Desktop") and copy the token — it is shown only once

Available tools

Invoices

| Tool | Description | |---|---| | list_invoices | List invoices with optional status/date/customer filters | | get_invoice | Get full invoice detail by ID | | create_invoice | Create a new invoice | | update_invoice | Update invoice fields (due date, notes, etc.) | | record_payment | Record a payment against an invoice | | send_invoice | Mark invoice as sent |

Customers

| Tool | Description | |---|---| | list_customers | List customers with optional search | | get_customer | Get customer profile and history | | create_customer | Create a new customer |

Vendors

| Tool | Description | |---|---| | list_vendors | List vendors with optional search | | get_vendor | Get vendor profile and bill history | | create_vendor | Create a new vendor |

Expenses

| Tool | Description | |---|---| | list_expenses | List expenses with optional date/category filters | | create_expense | Record a new expense |

Bills

| Tool | Description | |---|---| | list_bills | List bills with optional status filter | | create_bill | Create a bill from a vendor | | mark_bill_paid | Mark a bill as paid |

Reports

| Tool | Description | |---|---| | get_overdue_invoices | List all overdue invoices | | get_outstanding_balance | Total outstanding AR balance | | get_unpaid_bills | List all unpaid bills | | get_profit_and_loss | P&L summary for a date range | | get_cash_flow | Cash flow summary for a date range | | get_customer_balance | Outstanding balance for a specific customer |

Example usage in Claude

"Show me all overdue invoices"

"Create an invoice for Acme Corp for 3 hours of consulting at $150/hour, due in 30 days"

"What's our profit and loss for Q1 2025?"

"Mark invoice INV-042 as paid — $1,500 received today by bank transfer"

License

MIT