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

bimp-mcp

v0.4.0

Published

MCP server for BIMP ERP API — ~140 tools dynamically generated from OpenAPI spec, plus planning/accounting fields and bulk operations

Readme


Features

  • ~135 auto-generated tools from OpenAPI 3.1 spec — edit bimp-api.json, restart, done
  • 3 utility tools for bulk operations: bimp_fetch_all, bimp_batch_read, bimp_bulk_update
  • 6 MCP prompts with ERP domain context, workflow guides, and data analysis patterns
  • Auto-authentication — login on first call, transparent token refresh on 401

Quick Start

Prerequisites

  • Node.js 20+
  • A BIMP ERP account with API access

1. Configure environment

Create a .env file (see .env.example):

BIMP_BASE_URL=https://app.bimpsoft.com
[email protected]
BIMP_PASSWORD=your-password
BIMP_COMPANY_CODE=000001398

2. Install and run

npm install
npm start

For development with auto-reload:

npm run dev

3. Connect your MCP client

Add to claude_desktop_config.json (Claude Desktop) or equivalent:

{
  "mcpServers": {
    "bimp": {
      "command": "npx",
      "args": ["tsx", "src/index.ts"],
      "cwd": "/path/to/bimp-mcp",
      "env": {
        "BIMP_EMAIL": "[email protected]",
        "BIMP_PASSWORD": "your-password",
        "BIMP_COMPANY_CODE": "000001398"
      }
    }
  }
}

Tools

Auto-generated (~135 tools)

Generated from bimp-api.json at startup. Naming: bimp_{entity}_{action}.

| Domain | Examples | |---|---| | Sales | bimp_salesInvoice_readList, bimp_salesInvoice_create, bimp_invoiceForCustomerPayment_readList | | Inventory | bimp_nomenclature_readList, bimp_inventory_readList_cursor, bimp_movementOfInventories_create | | Finance | bimp_customerPayment_readList, bimp_supplierPayment_create, bimp_cashBox_readList | | Manufacturing | bimp_production_order_readList, bimp_production_assembly_create, bimp_specification_read | | Procurement | bimp_purchaseInvoice_readList, bimp_invoiceForSupplierPayment_create | | Reference Data | bimp_counterparty_readList, bimp_employee_readList, bimp_warehouse_readList | | Auth | bimp_auth_listCompanies, bimp_auth_switchCompany |

Utility tools

| Tool | Purpose | |---|---| | bimp_fetch_all | Auto-paginate any readList. Supports offset/count, cursor, page/pageSize. Optional enrich mode fetches full details per record. | | bimp_batch_read | Parallel read of full details for an array of UUIDs with configurable concurrency. | | bimp_bulk_update | Mass update records with batched concurrency and per-item error reporting. |

Prompts

| Prompt | Description | |---|---| | bimp_erp_context | Entity structure, relationships, Ukrainian terminology mapping | | bimp_data_analysis | Data analysis patterns, pagination quirks, enrichment strategies | | bimp_bulk_operations | Mass operation patterns: price updates, bulk edits, imports | | bimp_sales_workflow | Sales process: order, realization, payment, returns | | bimp_production_workflow | Production: specification, order, assembly, material write-offs | | bimp_procurement_workflow | Procurement: supplier invoice, purchase invoice, contracts |

Testing

npm test                  # Unit tests (mocked, no API calls)
npm run test:integration  # Integration tests (requires env vars)
npm run test:functional   # Functional E2E tests (requires env vars)
npm run test:all          # All tests

License

MIT