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

@groveback/mcp

v0.3.1

Published

MCP server that exposes the Groveback admin API as LLM tools — build your backend (collections, schemas, policies, roles, functions/custom endpoints, users, seed data) by conversation.

Readme

@groveback/mcp

An MCP server that exposes the admin API of a running Groveback as tools, so an LLM (Claude Code, Claude Desktop, Cursor, Codex, …) can build your backend by conversation — create collections, schemas, policies, roles, functions/custom HTTP endpoints, users, and seed data.

It talks to your Groveback over its REST admin API using a project API key with admin scope. It imports no server internals and never touches the database directly.

Setup

  1. In the dashboard (/dashboard), create a project and an API key with the admin scope. The full secret (shown once) looks like gb_sk_<projectId>.<secret>.
  2. Add the server to your MCP client. stdio transport; the command is npx -y @groveback/mcp.

Claude Code

claude mcp add groveback \
  -e GROVEBACK_URL=http://localhost:8080 \
  -e GROVEBACK_API_KEY=gb_sk_<projectId>.<secret> \
  -- npx -y @groveback/mcp

Claude Desktop / Cursor / Windsurf / other clients — same mcpServers JSON shape:

{
  "mcpServers": {
    "groveback": {
      "command": "npx",
      "args": ["-y", "@groveback/mcp"],
      "env": {
        "GROVEBACK_URL": "http://localhost:8080",
        "GROVEBACK_API_KEY": "gb_sk_<projectId>.<secret>"
      }
    }
  }
}

Configuration (env)

| Variable | Required | Description | |---|---|---| | GROVEBACK_URL | yes | Base URL of your running Groveback, e.g. http://localhost:8080 | | GROVEBACK_API_KEY | yes | Admin-scoped key gb_sk_<projectId>.<secret> (carries the project id) | | GROVEBACK_MCP_READONLY | no | 1 to register only read tools (no mutations) |

Tools

Call get_guide first — it returns a cheatsheet for the permission-string format, the policy DSL ($auth.* placeholders), how a server-side admin key needs an admin policy rule for full access, the per-collection REST data API, native end-user auth (/api/v1/auth/*), the @groveback/sdk client and Swagger/OpenAPI URLs, the function trigger union, and the HTTP handler context. Then: collections/schemas/policies/indexes, roles (member + end-user), functions and custom HTTP endpoints, users, documents, API keys, OAuth providers, plan usage, and config export/import.

Destructive tools carry a destructiveHint annotation so clients can ask for confirmation. Control-plane operations (create/suspend projects, members) are out of scope — do those in the dashboard.

License

Apache-2.0