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

shaddai-mcp

v2.3.0

Published

SHADDAI 7-agent council + RAG knowledge bases as a Model Context Protocol server. Key-free: no API keys, no external LLM, no localhost. Wire it into Claude with one npx line and instantly get a knowledge-grounded 7-agent system.

Readme

SHADDAI MCP

The 7 SHADDAI agents and their RAG knowledge bases (the mastery stores) as a Model Context Protocol server for Claude Desktop, Claude Code, Cursor, or any MCP stdio client.

Key-free. No API keys. No external LLM calls. No localhost server. You paste one line, and Claude instantly gets a knowledge-grounded 7-agent council it can route to.

One-line install (no setup)

Add to Claude Code:

claude mcp add shaddai -- npx -y shaddai-mcp

Claude Desktop — edit config (File ▸ Settings ▸ Developer ▸ Edit Config) and add:

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

Cursor — Settings ▸ Features ▸ MCP ▸ Add new MCP server ▸ type stdio, command:

npx -y shaddai-mcp

That's it. The package runs anywhere Node >= 18 is installed. If you want a local copy instead of npx, npm i -g shaddai-mcp then use the shaddai-mcp binary.

The 7 agents

| Agent | Role | Knowledge base | |----------|------------|----------------| | SHADDAI | Orchestrator | Strategy, decisions, manifestation | | NEXUS | Architect | Scalable system design, engineering | | ZEROX | Markets | Money, investing, unit economics | | ORACLE | Research | Manifestation, law of attraction, research | | TURTLE | Creative | Art, design, creative process | | QUILL | Writing | Stoic discipline, writing craft | | PIKADON | Security | Privacy, online security, hardening |

Tools

  • list_agents — the 7 agents, their role/goal, and KB document count
  • list_rag_docs — documents inside one agent's knowledge base
  • rag_search — raw TF-IDF chunk hits (score + source doc) for a query
  • rag_ask — retrieves the most relevant passages and returns them with a grounded-answer instruction. Claude synthesizes the answer from the passages.
  • run_agent — routes a goal to the right agent, injects its knowledge as passages, and returns a persona + instruction for Claude to complete the task.

Resources

  • kb://<agent> — each agent's knowledge base, browsable (7 resources)

Try it

  • "rag_ask — using the ORACLE knowledge base, what is manifestation?"
  • "run_agent — QUILL, write a stoic essay on discipline using your knowledge."
  • "rag_search in NEXUS's KB for how to design a scalable system."

How it works

This package ships the 7 agent personas + their RAG stores only. Tools return ranked passages and an explicit instruction, and the connected host model (Claude) does the synthesis. The proprietary SHADDAI orchestration engine, tool suite, billing, and server routes are not included.

Development

npm install
node mcp-server-rag.js --self-test        # fast protocol test
node mcp-server-rag.js --self-test-full   # + rag_ask & run_agent

Logs go to stderr; stdout is reserved for the MCP protocol.

License

Source-available. You may use this server and its knowledge for your own personal or commercial work, but you may not redistribute the code or the knowledge base contents in a competing product. See LICENSE.