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

@lisa-mcp/server

v0.9.2

Published

LISA — standalone MCP server for SAP object translation (XCO i18n). Deployable on SAP BTP or runnable locally.

Readme

@lisa-mcp/server

npm

LISA (Localization & Internationalization Service for ABAP) as a standalone Model Context Protocol server: 3 focused tools — TranslateListLanguages, TranslateGetTexts, TranslateSetTexts — that let AI assistants read, write and compare SAP object translations (data elements, domains, CDS views, message classes, text pools, text tables, …) through the XCO i18n APIs.

The server is one half of a working setup: it talks to a small ABAP HTTP service (ZCL_I18N_SERVICE) that you import into the target SAP system. The ABAP sources and full documentation live in the LISA repository.

Run locally (development / testing)

npx @lisa-mcp/server

Configure via environment variables, or a .env next to where you run it — the package ships a commented .env.example to copy (cp node_modules/@lisa-mcp/server/.env.example .env):

SAP_URL=https://your-abap-system.example.com
SAP_USERNAME=ABAP_USER
SAP_PASSWORD=secret
SAP_CLIENT=100
SAP_I18N_SERVICE_PATH=/sap/bc/http/sap/zi18n_service
MCP_TRANSPORT=http-streamable      # or "stdio"
PORT=8080

HTTP mode serves the MCP endpoint on http://localhost:8080/mcp (with a /health probe). For stdio, point your MCP client at the binary directly:

{
  "mcpServers": {
    "lisa": {
      "command": "npx",
      "args": ["@lisa-mcp/server"],
      "env": { "MCP_TRANSPORT": "stdio", "SAP_URL": "…", "SAP_USERNAME": "…", "SAP_PASSWORD": "…" }
    }
  }
}

⚠️ Local mode has no XSUAA in front of it and uses a single technical SAP user. Keep it on your machine — production runs on SAP BTP with XSUAA + principal propagation.

Deploy to SAP BTP from npm (no clone)

The package ships an MTA template under templates/mta/ — a minimal deploy project that npm installs this package instead of building the repo from source:

cp -r node_modules/@lisa-mcp/server/templates/mta lisa-deploy && cd lisa-deploy
# edit mta.yaml (destinations, service path), then:
mbt build && cf deploy mta_archives/*.mtar

It provisions XSUAA (authentication only — no scopes/roles) and the Destination service, ships per-backend override templates (mta-overrides-*.mtaext.example — on-premise / BTP ABAP Environment / S/4HANA Cloud), and upgrading LISA is just a version bump in app/package.json. See the template's README and docs: BTP deployment.

Configuration & docs

Every environment variable (auth methods, destinations, OAuth DCR, rate limits) is documented in docs: configuration reference; the authentication model (XSUAA / OIDC / API key — authentication only, SAP enforces rights) in docs: authentication.

Already running ARC-1? Load LISA's tools in-process instead of running a second server: @lisa-mcp/arc1-extension.

License

MIT © Clément Ringot