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

@tonykk/management-brain-mcp

v1.2.0

Published

MCP server for AI Management Brain — 44 tools for team management, consulting engine, world model, C-Suite board, execution intelligence, and bidirectional sync

Readme

@tonykk/management-brain-mcp

MCP server for AI Management Brain — 33 tools for team management, C-Suite board discussions, execution intelligence, AI recommendations, and employee insights.

Supports both stdio (Claude Code, OpenClaw) and HTTP (ChatGPT, Gemini, remote clients) transports.

Install (stdio mode)

Add to your Claude Code MCP config (~/.claude.json or project .mcp.json):

{
  "mcpServers": {
    "management-brain": {
      "command": "npx",
      "args": ["-y", "@tonykk/management-brain-mcp"],
      "env": {
        "MANAGEMENT_BRAIN_API_KEY": "your-api-key"
      }
    }
  }
}

Zero local dependencies. One environment variable.

Or install globally:

npm install -g @tonykk/management-brain-mcp

HTTP Mode (for ChatGPT / remote clients)

Start the server in HTTP mode:

TRANSPORT=http \
MCP_HTTP_API_KEY=your-secret \
MANAGEMENT_BRAIN_API_KEY=your-api-key \
node dist/index.js

Or use the npm script:

npm run start:http

The server listens on port 3100 (configurable via MCP_PORT).

Docker

docker build -t management-brain-mcp ./mcp-server
docker run -p 3100:3100 \
  -e MCP_HTTP_API_KEY=your-secret \
  -e MANAGEMENT_BRAIN_API_KEY=your-api-key \
  management-brain-mcp

Testing the HTTP endpoint

# Health check
curl http://localhost:3100/health

# MCP initialize
curl -X POST http://localhost:3100/mcp \
  -H "Authorization: Bearer your-secret" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'

Production deployment

The MCP HTTP server is included in docker-compose.prod.yml. Set MCP_HTTP_API_KEY in your .env file and rebuild:

docker compose -f docker-compose.prod.yml up -d --build mcp frontend

The endpoint is available at https://manageaibrain.com/mcp.

Tools

| Tool | Description | |------|-------------| | get_team_status | Today's check-in status — submission rate, pending employees | | get_report | Team performance report (weekly/monthly) with ranking | | get_alerts | Alerts for employees with consecutive missed days | | switch_mentor | Switch management mentor (musk, inamori, dalio, etc.) | | list_mentors | List all mentors with expertise and recommended seats | | board_discuss | Board discussion across all C-Suite seats on a topic | | chat_with_seat | Chat with a specific C-Suite seat (CEO, CFO, etc.) | | list_employees | List all active employees | | get_employee_profile | Employee profile with sentiment and submission history |

Usage Examples

In Claude Code:

  • "How's my team doing today?" → get_team_status
  • "Show me the weekly report" → get_report
  • "Should we expand to Japan?" → board_discuss
  • "Ask the CFO about Q2 budget" → chat_with_seat
  • "How is John doing?" → get_employee_profile
  • "Switch to Inamori management style" → switch_mentor

Configuration

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | MANAGEMENT_BRAIN_API_KEY | Yes | — | API key from manageaibrain.com | | MANAGEMENT_BRAIN_BASE_URL | No | https://manageaibrain.com | Override API URL | | TRANSPORT | No | stdio | Transport mode: stdio or http | | MCP_HTTP_API_KEY | HTTP mode | — | Bearer token for HTTP authentication | | MCP_PORT | No | 3100 | HTTP server port | | MCP_CORS_ORIGINS | No | * | Comma-separated allowed CORS origins |

Architecture

Claude Code / OpenClaw          ChatGPT / Gemini
    │                               │
    │ stdio (local)                  │ HTTPS
    │                               │
  npx @tonykk/management-brain-mcp    manageaibrain.com/mcp
                                    │
                               nginx → mcp:3100
                                    │
                              MCP HTTP Container
                                    │
                          http://brain:8080 (internal)

License

MIT