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

minimax-mcp-server

v1.0.1

Published

MCP Server for Minimax Accounting API - provides 24 tools for managing invoices, customers, journals, inbox, and more in Minimax ERP

Readme

minimax-mcp-server

MCP (Model Context Protocol) server for the Minimax accounting/ERP API. Gives Claude, Claude Desktop, and other MCP-compatible LLMs direct access to your Minimax data — invoices, customers, journals, inbox documents, dashboards, and more.

Quick Start

npm install -g minimax-mcp-server

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "minimax": {
      "command": "minimax-mcp",
      "env": {
        "MINIMAX_CLIENT_ID": "your_client_id",
        "MINIMAX_CLIENT_SECRET": "your_client_secret",
        "MINIMAX_USERNAME": "your_api_username",
        "MINIMAX_PASSWORD": "your_api_password",
        "MINIMAX_ORG_ID": "your_org_id",
        "MINIMAX_BASE_URL": "https://moj.minimax.hr/HR/API/api"
      }
    }
  }
}

Claude Code

Add to .claude/settings.json in your project:

{
  "mcpServers": {
    "minimax": {
      "command": "minimax-mcp",
      "env": {
        "MINIMAX_CLIENT_ID": "your_client_id",
        "MINIMAX_CLIENT_SECRET": "your_client_secret",
        "MINIMAX_USERNAME": "your_api_username",
        "MINIMAX_PASSWORD": "your_api_password",
        "MINIMAX_ORG_ID": "your_org_id",
        "MINIMAX_BASE_URL": "https://moj.minimax.hr/HR/API/api"
      }
    }
  }
}

Restart Claude after adding the configuration.

Credentials Setup

You need two sets of credentials:

1. Developer Credentials

Contact Minimax/Seyfor support ([email protected]) to get:

  • Client ID
  • Client Secret

2. API User Credentials

The API uses a separate password from your web login:

  1. Log into moj.minimax.hr
  2. Go to My Profile > Edit basic data
  3. Scroll to "Passwords for accessing external applications"
  4. Click New application and set a username + password

Finding Your Organization ID

After configuring credentials, ask Claude: "List my Minimax organizations" — the tool will return your org ID(s).

Available Tools (24)

Organization & Overview

| Tool | Description | |---|---| | list-organizations | List accessible organizations | | get-organization | Get organization details | | get-dashboard | Financial overview: invoices, revenue/expenses, top customers/suppliers, aging | | get-rate-limit-status | API call budget (daily/monthly) |

Issued Invoices (Outgoing)

| Tool | Description | |---|---| | list-issued-invoices | List with filters (status, dates, customer, payment) | | get-issued-invoice | Full invoice with line items | | create-issued-invoice | Create draft invoice | | issue-invoice | Finalize draft → Issued | | issue-and-generate-pdf | Issue + PDF in one call |

Received Invoices (Incoming)

| Tool | Description | |---|---| | list-received-invoices | List with filters | | get-received-invoice | Full details |

Inbox (Document Approval)

| Tool | Description | |---|---| | list-inbox-items | Pending documents for review | | get-inbox-item | Item details + attachments | | approve-inbox-item | Approve (optional reason) | | reject-inbox-item | Reject (reason required) | | create-received-invoice-from-inbox | Convert to received invoice |

Journals & Bank Statements

| Tool | Description | |---|---| | list-journals | List journal entries | | get-journal | Full debit/credit postings | | create-journal | Create journal entry | | upload-bank-statement | Parse CSV/MT940/XML and create journal entries |

Customers & Reference Data

| Tool | Description | |---|---| | list-customers | Search customers | | create-customer | Create customer/supplier | | lookup-customer-by-tax | Auto-create from Croatian tax registry (OIB) | | list-items | List products/services |

Environment Variables

| Variable | Required | Description | |---|---|---| | MINIMAX_CLIENT_ID | Yes | OAuth2 client ID | | MINIMAX_CLIENT_SECRET | Yes | OAuth2 client secret | | MINIMAX_USERNAME | Yes | API username | | MINIMAX_PASSWORD | Yes | API password | | MINIMAX_ORG_ID | No | Default organization ID | | MINIMAX_BASE_URL | No | API base (default: https://moj.minimax.hr/HR/API/api) |

Rate Limits

Minimax enforces per-organization limits: 1,000 calls/day, 20,000 calls/month. Use get-rate-limit-status to check usage.

License

MIT