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

openl-mcp-server

v0.0.4

Published

MCP Server for OpenL Studio Rules Management System

Readme

openl-mcp-server

Model Context Protocol server for OpenL Studio — the open-source Business Rules Management System.

Exposes OpenL Studio repositories, projects, rules tables, tests, and deployments as MCP tools and expert-guidance prompts, so Claude Desktop, Cursor, and any other MCP-compatible client can manage rules end-to-end.

Install

Run ad-hoc with npx (recommended for MCP clients):

npx -y openl-mcp-server

Or install globally:

npm install -g openl-mcp-server
openl-mcp

Requirements: Node.js ≥ 24.

Configure

The server talks to an OpenL Studio instance over HTTP. Configure it with environment variables:

# Required
OPENL_BASE_URL=<your-openl-studio-host>

# Auth — pick one
OPENL_USERNAME=<your-username>
OPENL_PASSWORD=<your-password>
# …or Personal Access Token
OPENL_PERSONAL_ACCESS_TOKEN=<your-token>

# Optional
OPENL_TIMEOUT=60000

Full auth guide: Authentication.

Use with Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "openl": {
      "command": "npx",
      "args": ["-y", "openl-mcp-server"],
      "env": {
        "OPENL_BASE_URL": "<your-openl-studio-host>",
        "OPENL_PERSONAL_ACCESS_TOKEN": "<your-token>"
      }
    }
  }
}

For Cursor and other clients, see the MCP Connection Guide.

Use as a CLI (direct API calls, no MCP client)

The same binary can invoke any openl_* tool directly from the shell — useful for scripting, CI, and ad-hoc debugging without setting up an MCP client. CLI mode is agent-first: output defaults to markdown (LLM-friendly, same as the MCP server); pass response_format: "json" when you want to pipe into jq.

# Quick discovery (no config needed)
npx -y openl-mcp-server --help          # human catalog (tool titles)
npx -y openl-mcp-server --list-tools    # machine-readable JSON (name/title/schema)

# Single call (markdown by default)
OPENL_BASE_URL=<host> OPENL_PERSONAL_ACCESS_TOKEN=<pat> \
  npx -y openl-mcp-server openl_list_repositories

# JSON for jq pipelines
OPENL_BASE_URL=<host> OPENL_PERSONAL_ACCESS_TOKEN=<pat> \
  npx -y openl-mcp-server openl_list_repositories '{"response_format":"json"}' | jq

See README.cli.md for the full CLI guide: configuration, all flags (--base-url, --token, --user, --password, --timeout, --client-document-id, --cookie-jar), argument-passing modes (@file.json, --stdin), session handling for trace flows, recipes, exit codes, Windows notes, and troubleshooting.

When run without arguments the binary keeps its default behavior and starts the MCP server on stdio.

What you get

  • 25 active tools for repositories, projects, rules tables, tests, and deployments (all prefixed openl_)
  • 15 expert-guidance prompts (create_rule, deploy_project, run_test, …) for complex OpenL Studio workflows
  • Type-safe validation via Zod schemas
  • Multiple response formatsjson, markdown, markdown_concise, markdown_detailed

Details and tool reference: Usage Examples.

Alternatives

Prefer containers? The same server is published as a Docker image:

  • Docker Hub — docker pull openltablets/openl-mcp:<X.Y.Z> (tagged releases) or :latest
  • GitHub Container Registry — docker pull ghcr.io/openl-tablets/openl-mcp:latest (nightly edge build, no tagged releases)

See the Docker setup guide.

Links

License

LGPL-3.0 — follows the OpenL Studio project license.