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

@orchestrator-claude/mcp-server

v1.24.0

Published

MCP Thin Client for Orchestrator - delegates to REST API

Readme

@orchestrator/mcp-server

MCP server for Orchestrator - thin client forwarding to REST API

Overview

This package provides an MCP (Model Context Protocol) server that exposes Orchestrator functionality to Claude Code and other MCP-compatible clients.

Architecture: This is a thin client that forwards all requests to the Orchestrator REST API. It contains NO business logic, only request transformation and error handling.

Installation

Global Installation (Recommended)

npm install -g @orchestrator/mcp-server

Local Installation

npm install @orchestrator/mcp-server

Configuration

Prerequisites

  1. REST API Server Running: The MCP server requires the Orchestrator REST API to be running.

    # Start API server (in main orchestrator project)
    docker-compose up -d
    # OR
    npm start
  2. API Key: Generate an API key using the CLI:

    orchestrator auth generate

    This creates ~/.orchestrator/config.json with your API key.

Claude Code Integration

Add to your Claude Code config (.mcp.json or Claude settings):

{
  "mcpServers": {
    "orchestrator": {
      "command": "orchestrator-mcp-server"
    }
  }
}

Environment Variables

  • MCP_DEBUG=true - Enable debug logging
  • ORCHESTRATOR_API_URL - Override API URL (default: http://localhost:3000)

Available Tools

Workflow Management

  • getStatus - Get workflow status
  • advancePhase - Advance workflow to next phase
  • approveAction - Approve pending action
  • getContext (v2) - Get workflow context and available actions
  • executeAction (v2) - Execute deterministic action

Project Management

  • detectWorkflow - Detect workflow type from prompt
  • validateArtifact - Validate generated artifacts
  • createCheckpoint - Create git checkpoint

Ping-Pong Pattern (LIM-001 Solution)

  • getNextAction - Get next pending action
  • setPendingAction - Set pending action for agent invocation
  • clearPendingAction - Clear pending action
  • approveAction - Approve action requiring human approval

Architecture

Claude Code
    ↓
MCP Server (thin client)
    ↓
REST API (business logic)
    ↓
Domain/Application/Infrastructure Layers

Key Principles:

  1. No Business Logic: All logic resides in REST API
  2. Stateless: No state stored in MCP server
  3. Simple Transformation: Request → API Call → Response
  4. Error Forwarding: API errors forwarded to Claude

Development

Building

npm run build

Testing

npm test

Running Locally

# With debug logging
MCP_DEBUG=true npm start

Troubleshooting

"API server unavailable"

  1. Check if REST API is running:

    curl http://localhost:3000/api/v1/health
  2. Check if API key is configured:

    cat ~/.orchestrator/config.json
  3. Regenerate API key if needed:

    orchestrator auth generate

"API key not configured"

Run:

orchestrator auth generate

MCP Server Not Found in Claude

  1. Ensure global installation:

    npm list -g @orchestrator/mcp-server
  2. Restart Claude Code after installing

  3. Check Claude Code logs for MCP connection errors

Version Compatibility

| MCP Server | Orchestrator CLI | REST API | |------------|------------------|----------| | 0.9.x | >= 0.9.0 | >= 0.9.0 | | 1.0.x | >= 1.0.0 | >= 1.0.0 |

License

MIT

Support