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 🙏

© 2025 – Pkg Stats / Ryan Hefner

neko-orchestra-mcp

v1.0.0

Published

Unified 9-Personality MCP Server - Combines task routing, personality analysis, and memory into one powerful MCP

Readme

🐾 Neko Orchestra MCP

Unified 9-Personality System - Combines task routing, personality analysis, and memory into one powerful MCP server.

Features

  • Task Routing - Route tasks to appropriate personality teams
  • 9 Personalities - Each with unique abilities and analysis styles
  • Team Formations - Strike, Research, Architecture, Data, Security, Full
  • Task Decomposition - Break complex tasks into subtasks with DAG
  • Memory System - In-memory storage with personality tagging
  • Collaboration - All personalities work together on complex problems

Installation

npm install -g neko-orchestra-mcp

The Nine Personalities

| Emoji | Name | Role | Ability | |-------|------|------|---------| | 🐾 | Neko-Arc | Tech Lead | Code Smell Detector | | 🎭 | Mario | Orchestrator | Task Choreographer | | 🗡️ | Noel | QA Lead | Mutation Testing | | 🎸 | Glam | Ethics Officer | Bias Radar | | 🧠 | Hannibal | Forensic Analyst | Behavioral Profiler | | 🧠 | Tetora | Synthesizer | Perspective Synthesizer | | 🔍 | Amaniya | Pattern Hunter | Dependency Web Mapper | | 🔪 | Miwa | Data Engineer | Data Migration | | 🌐 | Lain | Network Analyst | Wired Connection |

CLI Usage

# Start MCP server
neko-orchestra mcp

# Route a task
neko-orchestra route "implement user authentication"

# Decompose a task
neko-orchestra decompose "build new feature"

# Analyze with specific personality
neko-orchestra analyze neko-arc "var x = any"

# All personalities collaborate
neko-orchestra collaborate "design microservice architecture"

# Personalities vote
neko-orchestra vote "Which database?" "PostgreSQL,MongoDB,Redis"

# Memory operations
neko-orchestra remember project-status "In progress"
neko-orchestra recall project-status
neko-orchestra search progress

# List all personalities
neko-orchestra personalities

# Show formations
neko-orchestra formations

MCP Tools (21 total)

Routing (5)

  • orchestra_route - Route task to team
  • orchestra_decompose - Break into subtasks
  • orchestra_dependencies - Analyze blind spots
  • orchestra_formations - List formations
  • orchestra_matrix - Task-personality matrix

Analysis (4)

  • orchestra_analyze - Single personality analysis
  • orchestra_analyze_all - All 9 perspectives
  • orchestra_recommend - Get best personality
  • orchestra_personalities - List all

Memory (8)

  • orchestra_remember - Store memory
  • orchestra_recall - Get memory
  • orchestra_search - Search memories
  • orchestra_context - Recent memories
  • orchestra_memories - List all
  • orchestra_forget - Delete memory
  • orchestra_memories_by_personality - By personality
  • orchestra_stats - Statistics

Collaboration (3)

  • orchestra_collaborate - 9-way collaboration
  • orchestra_vote - Personality voting
  • orchestra_contrasting_views - Different viewpoints

Claude Code Configuration

{
  "mcpServers": {
    "orchestra": {
      "command": "npx",
      "args": ["neko-orchestra-mcp"]
    }
  }
}

Programmatic Usage

const {
  TaskRouter,
  PersonalityAnalyzer,
  MemorySystem,
  PERSONALITIES
} = require('neko-orchestra-mcp');

const router = new TaskRouter();
const analyzer = new PersonalityAnalyzer();
const memory = new MemorySystem();

// Route a task
const routing = router.route('implement security feature');
console.log(routing.formation.name); // SECURITY TEAM

// Analyze with personality
const analysis = analyzer.analyze('hannibal', 'debug this error');
console.log(analysis.analysis);

// Store memory
memory.remember('session-notes', 'Important findings', {
  personality: 'neko-arc',
  tags: ['security', 'findings']
});

License

MIT