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

@nuberea/openclaw

v1.0.0

Published

OpenClaw plugin for the NuBerea biblical data platform — exposes NuBerea MCP tools as native OpenClaw agent tools.

Downloads

894

Readme

NuBerea for OpenClaw

OpenClaw plugin for the NuBerea biblical data platform. Registers 7 MCP tools and a skill into the OpenClaw gateway, giving the agent direct access to Hebrew/Greek morphology, lexicons, Bible texts, Dead Sea Scrolls, and SQL analytics.

  • Package name: @nuberea/openclaw
  • Plugin id: nuberea
  • Skill id: nuberea
  • License: MIT
  • Required auth: NuBerea account — OAuth 2.1 + PKCE via npx @nuberea/sdk login

Requirements

  • OpenClaw >=2026.3.28
  • Node.js >=18
  • A free NuBerea account at nuberea.com

Install

Install the plugin:

openclaw plugins install @nuberea/openclaw

Install the skill:

openclaw skills install nuberea

Authenticate (one-time browser sign-in):

npx @nuberea/sdk login

Restart the gateway:

openclaw gateway restart

Auth setup

The @nuberea/sdk login command opens a browser to nuberea.com, completes OAuth 2.1 + PKCE, and stores access/refresh tokens in the OS keychain under service nuberea, account tokens. Tokens auto-refresh before expiry — no recurring manual steps required.

There are no required environment variables. If the OS keychain is unavailable, the SDK falls back to a platform state directory file:

  • macOS: ~/Library/Application Support/nuberea/tokens.json
  • Linux: ~/.local/state/nuberea/tokens.json
  • Windows: %APPDATA%/nuberea/tokens.json

What the plugin calls

All 7 tools make HTTPS requests to the NuBerea MCP server at https://nuberea.com/mcp. Each call sends a JSON-RPC tools/call request and returns read-only query results. No local files, environment variables, or system resources are accessed beyond the stored OAuth token.

SQL endpoints (nuberea_query) enforce SELECT-only queries server-side. No INSERT, UPDATE, DELETE, or DDL is permitted.

Tools registered

| Tool | Description | |---|---| | nuberea_verse | KJV verse lookup by book, chapter, and verse | | nuberea_bible_search | KJV full-text search | | nuberea_greek_lookup | LSJ Greek lexicon lookup | | nuberea_hebrew_lookup | BDB Hebrew lexicon lookup by Strong's number | | nuberea_greek_morphology | Macula Greek morphological analysis for a NT verse | | nuberea_hebrew_morphology | Macula Hebrew morphological analysis for an OT verse | | nuberea_query | Read-only SQL analytics across all NuBerea datasets |

Datasets available via nuberea_query

| Schema | Description | Rows | |---|---|---| | hebrew.morphemes | Hebrew Bible word-by-word morphology (WLC/Macula) | 467,770 | | greek.morphemes | Greek NT morphology (Nestle 1904/Macula) | 137,741 | | lxx.morphemes | Septuagint LXX morphology | 623,693 | | lsj.entries | Liddell-Scott-Jones Greek Lexicon | 119,553 | | bdb.entries | Brown-Driver-Briggs Hebrew Lexicon | 10,221 | | kjv.verses | King James Version Bible text | 36,821 | | dss.scrolls | Dead Sea Scrolls word annotations | 500,991 | | cntr.transcriptions | CNTR Greek NT manuscript transcriptions | 41,956 | | aland.pericopes | Synoptic parallel pericopes (Aland) | 330 |

Example agent prompts

  • "Look up the Greek word λόγος in the LSJ lexicon"
  • "What is the Hebrew morphology of Genesis 1:1?"
  • "Find every verse in John that contains the word 'light'"
  • "Join the Greek NT with the Septuagint on lemma for John 1:1 and show the gloss and definition"