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

groupwisdom-mcp

v1.2.0

Published

Claude MCP connector for GroupWisdom — the intelligence layer for groups

Readme

GroupWisdom

The intelligence layer for groups. A shared knowledge base, a live insight engine, and a universal connector layer (MCP + REST) so any AI tool can plug into your group's intelligence.

Quick start

Requires Node 22+ (uses the built-in node:sqlite — no native dependencies).

npm install
npm run build
npm run seed     # optional: demo group "Copenhagen Easter trip"
npm start        # web app at http://localhost:3000

The insight engine runs in mock mode by default. For real analysis with Claude:

export ANTHROPIC_API_KEY=sk-ant-...
npm start

What's inside

| Piece | File | What it does | |---|---|---| | Storage | src/db.ts | SQLite (built-in node:sqlite): groups, members, items, insights, connectors, living knowledge doc | | Insight engine | src/engine.ts | Analyzes everything shared; surfaces connections, blind spots, conflicts, patterns, questions, decisions and rewrites the group's living markdown doc. Claude API or deterministic mock | | REST API | src/api.ts | Full CRUD for external tools, auth via per-group X-API-Key | | MCP server | src/mcp.ts | stdio server: get_group_context, search_group_knowledge, save_to_group, get_group_insights, list_group_items | | Web app | public/index.html | Insights feed, knowledge base, group page, settings — the demo surface |

The engine runs automatically after every contribution (web, REST, or MCP), and on demand via "Run analysis now".

Connect Claude (MCP)

Grab the group's API key from Settings in the web app, then add to Claude Desktop / Claude Code config:

{
  "mcpServers": {
    "groupwisdom": {
      "command": "node",
      "args": ["/absolute/path/to/groupwisdom/dist/mcp.js"],
      "env": {
        "GW_API_KEY": "gw_...",
        "GW_DB": "/absolute/path/to/groupwisdom/groupwisdom.db"
      }
    }
  }
}

Then ask Claude things like "What restaurants should I look at for our trip?" (it calls get_group_context) or "Save this to our group" (it calls save_to_group, and the engine immediately checks for new connections).

REST API

All endpoints under /api. External tools authenticate with X-API-Key: gw_... and use - as the group id.

# Read the living knowledge document
curl -H "X-API-Key: $KEY" localhost:3000/api/groups/-/knowledge

# Write back to the group
curl -X POST -H "X-API-Key: $KEY" -H "Content-Type: application/json" \
  -d '{"title":"Found a great spot","content":"...","type":"note"}' \
  localhost:3000/api/groups/-/items

# Insights (optionally ?kind=blind_spot)
curl -H "X-API-Key: $KEY" localhost:3000/api/groups/-/insights

# Search
curl -H "X-API-Key: $KEY" "localhost:3000/api/groups/-/items?q=tivoli"

Other endpoints: POST /api/groups (create), POST /api/groups/:id/members, POST /api/groups/:id/analyze, POST /api/groups/:id/insights/:iid/react (acknowledged/dismissed).

Environment

| Var | Default | Purpose | |---|---|---| | ANTHROPIC_API_KEY | — | Enables real Claude analysis (otherwise mock) | | GW_MODEL | claude-sonnet-4-6 | Claude model for the engine | | PORT | 3000 | Web server port | | GW_DB | groupwisdom.db | SQLite path | | GW_API_KEY / GW_GROUP_ID | first group | Which group the MCP server serves |