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

abapilot

v1.0.3

Published

MCP connector for ABAPilot — AI access to SAP ECC and on-premise S/4HANA. Requires a licensed ABAPilot backend (/ABAPILOT/ namespace) in your SAP system.

Readme

ABAPilot MCP Connector

Connects any MCP client — Claude, Claude Code, Cursor, ChatGPT — to a licensed ABAPilot backend running inside your SAP system (ECC 6.0 through on-premise S/4HANA).

This package is the free client-side connector. It contains no business logic: every operation executes inside SAP, gated by the /ABAPILOT/CONFIG whitelist, the calling user's own SAP authorizations, and logged to /ABAPILOT/AUDIT. A licensed ABAPilot backend (delivered as an ABAP transport into the /ABAPILOT/ namespace) is required — request a demo.

Quick start

{
  "mcpServers": {
    "abapilot": {
      "command": "npx",
      "args": ["-y", "abapilot"],
      "env": {
        "ABAPILOT_URL": "http://<sap-host>:<port>/sap/bc/ZABAPilot",
        "ABAPILOT_USER": "<sap-user>",
        "ABAPILOT_PASSWORD": "<sap-password>",
        "ABAPILOT_CLIENT": "100"
      }
    }
  }
}

Add the block above to your MCP client configuration (e.g. Claude Desktop's claude_desktop_config.json). Your SAP credentials go only to your SAP system — never to us or to any third party.

Tools

Each tool maps 1:1 to a whitelisted endpoint of the ABAPilot dispatcher in your SAP system. The AI client supplies the reasoning; SAP supplies the data, always under the connecting user's own authorizations.

  • sap_read_table_data — query SAP table rows with ABAP-style WHERE filtering
  • sap_read_table_structure — field definitions, types and keys of a table
  • sap_search_tables — find tables in the Data Dictionary by keyword
  • sap_read_code — read ABAP source (programs, classes, function groups)
  • sap_read_where_used — cross-reference lookup (what uses X / what does X use)
  • sap_syntax_check — validate ABAP source against the system's release rules
  • sap_read_dumps — ST22 runtime errors (short dumps)
  • sap_read_jobs — SM37 background jobs, status and runtimes

The available endpoints are controlled by the /ABAPILOT/CONFIG whitelist in your system — remove an endpoint there and the corresponding tool stops working, no client change needed.

Configuration

| Variable | Required | Description | |---|---|---| | ABAPILOT_URL | yes | Base URL of the ABAPilot SICF service | | ABAPILOT_USER / ABAPILOT_PASSWORD | yes* | SAP credentials (basic auth) | | ABAPILOT_TOKEN | yes* | Bearer token alternative to user/password | | ABAPILOT_CLIENT | no | SAP client (Mandant), sent as sap-client URL parameter | | ABAPILOT_TLS_INSECURE | no | 1 to skip TLS verification (dev systems only) |

* one of the two authentication methods.

Links

  • Product: https://crimsonconsultingsl.com/abapilot/
  • Architecture: https://github.com/NicoHern/abapilot-mcp/blob/main/ARCHITECTURE.md
  • AI for SAP ECC — 2026 guide: https://crimsonconsultingsl.com/ai-for-sap-ecc/

© Crimson Consulting SL — connector released under MIT; the ABAPilot backend is a commercial product.