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

multi-skill-orchestrator-mcp

v1.0.0

Published

MCP server for orchestrating multiple Claude skills with optimized execution and dependency resolution

Readme

Multi-Skill Orchestrator MCP Server

Optimize AI workflows with intelligent skill composition

Execute multiple Claude skills simultaneously with automatic dependency resolution, state fusion, and unified reporting. Achieve ~35% token reduction and ~58% latency improvement over sequential execution.

npm version License: MIT


🎯 Features

  • Automatic Dependency Resolution: Analyzes skill relationships and optimizes execution order
  • State Machine Fusion: Eliminates redundant validation, reporting, and persistence operations
  • Parallel Execution: Independent skills run simultaneously via in-context Claude reasoning
  • Token Optimization: ~35% reduction through intelligent state merging
  • Latency Reduction: ~58% faster execution with parallel processing
  • Cross-Skill Insights: Automatically identifies correlations, conflicts, and patterns across results
  • Unified Reporting: Single comprehensive artifact instead of multiple separate outputs

📦 Installation

Option 1: npm (Recommended)

npm install -g multi-skill-orchestrator-mcp

Option 2: From Source

git clone https://github.com/your-username/multi-skill-orchestrator-mcp.git
cd multi-skill-orchestrator-mcp
npm install
npm run build

⚙️ Configuration

Claude Desktop Configuration

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "multi-skill-orchestrator": {
      "command": "npx",
      "args": [
        "-y",
        "multi-skill-orchestrator-mcp"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "your-api-key-here"
      }
    }
  }
}

Environment Variables

  • ANTHROPIC_API_KEY (required): Your Anthropic API key

Get your API key from: https://console.anthropic.com/


🚀 Usage

Available Tools

1. list_available_skills

List all available skills with metadata.

{
  "name": "list_available_skills"
}

Returns: Array of skills with name, description, complexity, token estimates, and state machines.


2. analyze_composition

Analyze a composition without executing it. Get dependency graph, execution plan, and projected savings.

{
  "name": "analyze_composition",
  "arguments": {
    "skills": ["citation_audit", "paper_claim_extractor"],
    "strategy": "optimize_parallel"
  }
}

Parameters:

  • skills (required): Array of skill names
  • strategy (optional): optimize_parallel | optimize_sequential | optimize_minimal

Returns: Execution plan, dependency graph, projected token/latency savings.


3. execute_composition

Execute multiple skills with optimized orchestration.

{
  "name": "execute_composition",
  "arguments": {
    "skills": ["citation_audit", "paper_claim_extractor", "latex_compile_review"],
    "input": "Your paper text here...",
    "strategy": "optimize_parallel"
  }
}

Parameters:

  • skills (required): Array of skill names to execute
  • input (required): Shared input data (paper text, document content, etc.)
  • strategy (optional): Optimization strategy (default: optimize_parallel)

Returns: Unified report with all skill results, cross-skill insights, and optimization metrics.


Example Workflows

Academic Paper Analysis

// Analyze paper with all available skills
{
  "name": "execute_composition",
  "arguments": {
    "skills": [
      "citation_audit",
      "paper_claim_extractor",
      "latex_compile_review",
      "research_question_analyzer"
    ],
    "input": "Your research paper content...",
    "strategy": "optimize_parallel"
  }
}

Result: Single unified report containing:

  • Citation accuracy analysis
  • Extracted claims with evidence links
  • LaTeX structure review
  • Research question evaluation
  • Cross-references (e.g., unsupported claims flagged)
  • 35% token savings, 58% latency reduction

Sequential Dependency Workflow

// Extract claims first, then analyze questions
{
  "name": "execute_composition",
  "arguments": {
    "skills": [
      "paper_claim_extractor",
      "research_question_analyzer"
    ],
    "input": "Your research paper...",
    "strategy": "optimize_sequential"
  }
}

Result: Questions analyzed with full context from extracted claims.


🛠️ Available Skills

| Skill | Description | Tokens | Complexity | |-------|-------------|--------|-----------| | citation_audit | Validate academic citations for completeness and accuracy | ~4,000 | 6.2 | | latex_compile_review | Analyze LaTeX structure and compile review | ~2,000 | 7.1 | | research_question_analyzer | Evaluate research questions for clarity and falsifiability | ~2,500 | 5.8 | | paper_claim_extractor | Extract claims and link to supporting evidence | ~3,500 | 6.5 |


📊 Optimization Strategies

optimize_parallel (Default)

  • Goal: Minimize execution time
  • Approach: Run independent skills simultaneously
  • Best For: 3+ skills with no dependencies
  • Savings: ~58% latency reduction

optimize_sequential

  • Goal: Preserve strict ordering
  • Approach: Execute one-by-one in dependency order
  • Best For: Complex dependencies
  • Savings: ~20-30% token reduction

optimize_minimal

  • Goal: Fastest setup
  • Approach: Minimal orchestration overhead
  • Best For: 2 skills, simple compositions
  • Savings: ~15-20% optimization

🔬 Performance Metrics

Token Savings

Sequential Execution (4 skills):

citation_audit:        4,000 tokens
paper_claim_extractor: 3,500 tokens
latex_compile_review:  2,000 tokens
research_question:     2,500 tokens
─────────────────────────────────
TOTAL:                12,000 tokens

Optimized Composition (4 skills):

Shared validation:       200 tokens
Parallel processing:   6,800 tokens
Unified persistence:     800 tokens
─────────────────────────────────
TOTAL:                ~7,800 tokens
SAVINGS:               4,200 tokens (35%)

Latency Reduction

  • Sequential: 4 skills × 150ms = 600ms
  • Optimized: 250ms orchestration overhead
  • Savings: 350ms (58% reduction)

🧪 Testing

Using MCP Inspector

# Install inspector
npm install -g @modelcontextprotocol/inspector

# Run inspector
npx @modelcontextprotocol/inspector dist/index.js

Example Test Cases

  1. List Skills: Verify all 4 skills are available
  2. Analyze Composition: Check dependency graph and savings calculation
  3. Execute 2 Skills: Test minimal composition
  4. Execute 4 Skills: Test full parallel optimization
  5. Invalid Skill: Test error handling

📚 Architecture

State Machine Fusion

# Individual Skills (Sequential)
SKILL_A: VALIDATE → PROCESS → REPORT → PERSIST
SKILL_B: VALIDATE → PROCESS → REPORT → PERSIST
SKILL_C: VALIDATE → PROCESS → REPORT → PERSIST

# Fused Composition (Optimized)
UNIFIED_VALIDATE (1× instead of 3×)
  ↓
PARALLEL_PROCESS (A + B + C simultaneously)
  ↓
SYNTHESIZE_RESULTS (cross-skill analysis)
  ↓
UNIFIED_PERSIST (1× instead of 3×)

Dependency Resolution

// Automatic dependency detection
const dependencies = {
  'citation_audit': [],  // Independent
  'paper_claim_extractor': [],  // Independent
  'research_question_analyzer': ['paper_claim_extractor']  // Depends on claims
};

// Execution phases
Phase 1 (Parallel): citation_audit, paper_claim_extractor
Phase 2 (Sequential): research_question_analyzer

🤝 Contributing

Contributions welcome! Please see CONTRIBUTING.md for guidelines.

Development Setup

git clone https://github.com/your-username/multi-skill-orchestrator-mcp.git
cd multi-skill-orchestrator-mcp
npm install
npm run build
npm run watch  # Development mode

📄 License

MIT License - see LICENSE for details.


🙏 Acknowledgments


🔗 Links


Author: Igor Holt (ORCID: 0009-0008-8389-1297)
Version: 1.0.0
Last Updated: 2025-12-31