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

boardroom-mcp

v0.2.0

Published

AI Governance-as-a-Service — MCP Server for multi-advisor decision intelligence with 450+ advisors across 38 expert councils

Readme

🏛️ Boardroom MCP

AI Governance-as-a-Service — Model Context Protocol Server

MIT License npm MCP

Give your AI agents a boardroom of advisors. Based on Napoleon Hill's Mastermind Principle — the idea that coordinated minds produce intelligence no single mind can achieve — digitized for AI agents.

Multi-advisor debate, institutional memory, trust scoring, and cognitive governance — all running locally on your machine.

📖 Read the Full Documentation →

Complete guide covering Quick Start → Installation → 5 Tools → Protocol Files → Building Councils → Debate Protocols → Cognitive Drills → Mind Versioning → Architecture → Full System.


⚡ Quick Start

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%/Claude/claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Restart Claude Desktop, then ask:

Board: Should I build a mobile app or PWA for my SaaS?

Claude Code (CLI)

Create .mcp.json in your project root:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Or add it to your Claude Code settings via:

claude mcp add boardroom -- npx -y boardroom-mcp

Cursor / Windsurf

Add to your MCP settings (Settings → MCP):

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Antigravity

Add to your MCP configuration file:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

OpenClaw

Add to your ~/.openclaw/openclaw.json under the gateway's mcpServers key:

{
  "gateway": {
    "mcpServers": {
      "boardroom": {
        "command": "npx",
        "args": ["-y", "boardroom-mcp"]
      }
    }
  }
}

✅ Verify Installation

After configuring, ask your AI agent:

Use the analyze tool: "Test — is the Boardroom working?"

You should see output starting with # Boardroom Analysis listing the demo council advisors. If you see this, the server is working correctly.


📦 Alternative Installation Methods

# Option A: npx (used by MCP configs above — no global install needed)
npx -y boardroom-mcp

# Option B: Global install
npm install -g boardroom-mcp
boardroom-mcp

# Option C: Clone and build (for development/contributing)
git clone https://github.com/randysalars/boardroom-mcp.git
cd boardroom-mcp && npm install && npm run build

Note: Options A and B require the package to be published to npm. If npx fails, use Option C (clone and build), then point your MCP config to the local build:

{
  "mcpServers": {
    "boardroom": {
      "command": "node",
      "args": ["/path/to/boardroom-mcp/dist/index.js"]
    }
  }
}

🔧 5 MCP Tools

| Tool | Purpose | |------|---------| | analyze | Full boardroom consultation with multi-advisor debate | | check_governance | Task classification + severity routing | | query_intelligence | Search LEDGER decisions + Wisdom Codex | | trust_lookup | 6-dimension trust vector for any entity | | report_outcome | Log outcomes for institutional memory |

See detailed tool documentation with examples


🏗️ Architecture

Your AI Client (Claude, Cursor, Windsurf, Antigravity, OpenClaw)
         │ MCP Protocol (STDIO)
         │ Runs 100% on YOUR machine
         ▼
  Boardroom MCP Server
         │
         ├── demo/              ← Included demo council (5 advisors)
         │
         ▼
  ~/.ai/boardroom/          ← Full protocol files (optional upgrade)
  ├── LEDGER.md              ← Institutional memory
  ├── BOARD_WISDOM.md        ← Distilled principles
  └── mastermind/
      ├── seats/             ← Advisor definitions
      ├── councils/          ← Expert panels
      └── protocols/         ← Debate rules

Zero cost. No API keys. No cloud. No hosting. Your AI client does the LLM processing.


🎯 What You Get

Free (This Repo)

  • ✅ MCP server with 5 tools
  • ✅ Demo council (5 advisors: Strategist, Engineer, Skeptic, Visionary, Guardian)
  • ✅ MIT license

Full System (salars.net/boardroom)

  • 🏛️ 450+ named advisors with calibrated seat cards (Buffett, Torvalds, Aurelius...)
  • 🏛️ 38 expert councils (Tech, Business, Survival, Legal, Creative...)
  • ⚔️ 5 debate resolution types
  • 🧠 10 cognitive drills
  • ⏳ Mind Versioning (Young Jobs vs Late Jobs)
  • 🔥 Prometheus Protocol (forge new domains on the fly)
  • 👁️ Meta-Observer (real-time bias detection)
  • 📚 69+ LEDGER decisions as precedent library
  • 📖 113+ Wisdom Codex entries
  • 🎯 Smart Router (auto-detects council + severity)

⚙️ Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | BOARDROOM_ROOT | ~/.ai/boardroom | Path to your full protocol files directory | | SALARSNET_ROOT | (auto-detect) | Root project directory |


🔍 Troubleshooting

| Problem | Solution | |---------|----------| | npx boardroom-mcp fails | Package may not be published yet — use Option C (clone and build) | | "No advisors found" | Demo council ships with the package. Check demo/seats.md exists | | Tools don't appear in Claude | Restart Claude Desktop after editing config. Check JSON syntax. | | ENOENT errors | If using full protocol files, set BOARDROOM_ROOT to your .ai/boardroom path |


📬 Stay in the Loop


🤝 Contributing

PRs welcome! Areas we'd love help with:

  • Additional demo advisors
  • New cognitive drill templates
  • Documentation improvements
  • Bug fixes

📄 License

MIT — Built by SalarsNet