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

@noyrax/mcp-server

v1.0.4-beta.37

Published

Unified MCP Server for Noyrax Workspace - Orchestrates 5D Database Plugin and Documentation System Plugin. Provides Model Context Protocol (MCP) access for AI agents (Cursor, VS Code, Claude Desktop).

Readme

@noyrax/mcp-server

Unified MCP Server for Noyrax Workspace - Orchestrates both plugins (5D Database Plugin + Documentation System Plugin) and provides centralized access for AI agents (Cursor, VS Code, Claude Desktop).

Quick Start

Installation

npm install -g @noyrax/mcp-server

Configuration

Cursor: Create .cursor/mcp-config.json:

{
  "mcpServers": {
    "noyrax": {
      "command": "noyrax-mcp-server",
      "args": ["${workspaceFolder}"]
    }
  }
}

VS Code: Add to .vscode/settings.json:

{
  "mcp.servers": {
    "noyrax": {
      "command": "noyrax-mcp-server",
      "args": ["${workspaceFolder}"]
    }
  }
}

First Steps

  1. Restart Cursor/VS Code
  2. Ask in Chat: "What is the system?" or "System status check"
  3. The AI agent should access tools via MCP Server

See INSTALLATION_GUIDE.md for detailed setup.

Overview

Der Noyrax Unified MCP Server ist ein Root-Level MCP-Server, der beide Plugins koordiniert:

  • 5D Database Plugin - Datenbank-Queries, Semantic Search, System-Analyse
  • Documentation System Plugin - Dokumentations-Generierung, Validierung, Drift-Detection

Architektur

VS Code/Cursor/Copilot
    ↓ (MCP Protocol)
Root MCP-Server
    ├── Database Tools → 5D Database Plugin APIs
    ├── Validation Tools → Documentation System Plugin CLI
    └── Orchestration Tools → Workflow-Koordination

Features

Database Tools (5D Database Plugin)

  • Queries: query_modules, query_symbols, query_dependencies, query_adrs, query_changes
  • Semantic Search: semantic_discovery (nutzt Semantic Brain)
  • System-Analyse: system_explanation, learning_path, bootstrap
  • Advanced: cross_analysis, gap_analysis, architecture_mining
  • Workflow: generate_documentation, check_docs_status

Validation Tools (Documentation System Plugin)

  • validation/runScan - Dokumentations-Scan
  • validation/runValidate - Dokumentations-Validierung
  • validation/runDriftCheck - Drift-Detection
  • validation/analyzeImpact - Impact-Analyse
  • validation/verifyAdrs - ADR-Verification

Orchestration Tools

  • workflow/full_cycle - Vollständiger Workflow (Scan → Generate → Validate → Ingest → Embeddings)
  • workflow/generate_and_ingest - Generate Docs + Ingest
  • workflow/check_status - System-Status prüfen

Installation

Siehe INSTALLATION_GUIDE.md für detaillierte Anleitung.

Schnellstart

# Dependencies installieren
npm install

# MCP-Server kompilieren
npm run mcp:build

# MCP-Server starten
npm run mcp:start <workspace-root>

Konfiguration

VS Code

Fügen Sie zu .vscode/settings.json hinzu:

{
  "mcp.servers": {
    "noyrax": {
      "command": "node",
      "args": [
        "${workspaceFolder}/mcp-server/out/cli/server-cli.js",
        "${workspaceFolder}"
      ]
    }
  }
}

Cursor

Fügen Sie zu .cursor/mcp-config.json hinzu:

{
  "mcpServers": {
    "noyrax": {
      "command": "node",
      "args": [
        "${workspaceFolder}/mcp-server/out/cli/server-cli.js",
        "${workspaceFolder}"
      ]
    }
  }
}

Claude Desktop

Fügen Sie zu claude_desktop_config.json hinzu:

{
  "mcpServers": {
    "noyrax": {
      "command": "node",
      "args": [
        "D:/path/to/workspace/mcp-server/out/cli/server-cli.js",
        "${workspaceFolder}"
      ]
    }
  }
}

Siehe INSTALLATION_GUIDE.md für vollständige Konfiguration.

Workspace-Erkennung

Der MCP-Server unterstützt verschiedene Workspace-Konfigurationen:

  • Single-Root-Workspace - Standard-Workspace
  • Multi-Root-Workspace - Mehrere Workspace-Ordner
  • VS Code Workspace-File - .code-workspace Dateien
  • Cursor Workspace - Cursor-spezifische Konfiguration

Der Server erkennt automatisch:

  • Workspace-Root
  • Plugin-Pfade (5d-database-plugin/, documentation-system-plugin/)
  • Dokumentations-Pfad (docs/)
  • Datenbank-Pfad (.database-plugin/)

Semantic Brain Integration

Semantic Brain ist bereits vollständig integriert über das semantic_discovery Tool:

  • Nutzt SemanticSearchApi aus 5D Database Plugin
  • Generiert Embeddings via EmbeddingGenerator
  • Speichert in Vektordatenbank (SQLite VSS oder ChromaDB)
  • Keine zusätzlichen Tools nötig

Migration von alten MCP-Servern

WICHTIG: Die alten MCP-Server wurden entfernt:

  • documentation-system-plugin/mcp/src/server.ts - Entfernt
  • documentation-system-plugin/packages/doc-system-agent/src/mcp/server.ts - Entfernt

Neue Nutzung:

  • mcp-server/ im Root-Workspace - Einheitlicher Server

Siehe INSTALLATION_GUIDE.md für Migrations-Anleitung.

Troubleshooting

Plugin nicht gefunden

Problem: "5D Database Plugin is not available" oder "Documentation System Plugin is not available"

Lösung:

  1. Prüfen Sie, ob beide Plugins im Workspace existieren
  2. Kompilieren Sie die Plugins: npm run compile:all
  3. Prüfen Sie die Plugin-Pfade in WorkspaceResolver.findPluginPaths()

Workspace-Root nicht erkannt

Problem: Workspace-Root wird nicht korrekt erkannt

Lösung:

  1. Geben Sie den Workspace-Root explizit an: npm run mcp:start <workspace-root>
  2. Prüfen Sie, ob .code-workspace Dateien korrekt sind
  3. Nutzen Sie absoluten Pfad für Claude Desktop

Tools funktionieren nicht

Problem: Tools geben Fehler zurück

Lösung:

  1. Prüfen Sie, ob docs/ existiert (für Database-Tools)
  2. Prüfen Sie, ob SQLite-DBs existieren (für Database-Tools)
  3. Prüfen Sie, ob CLI-Tools kompiliert sind (für Validation-Tools)

Entwicklung

Projekt-Struktur

mcp-server/
├── src/
│   ├── server.ts                    # Haupt-MCP-Server
│   ├── workspace-resolver.ts        # Workspace-Erkennung
│   ├── cli/
│   │   └── server-cli.ts            # CLI Entry Point
│   ├── plugins/
│   │   ├── database-plugin-adapter.ts
│   │   └── documentation-plugin-adapter.ts
│   └── tools/
│       ├── database-tools.ts
│       ├── validation-tools.ts
│       └── orchestration-tools.ts
├── package.json
├── tsconfig.json
└── README.md

Build

# Kompilieren
npm run compile

# Watch-Mode
npm run watch

Testing

# MCP-Server starten (für Testing)
npm run mcp:start <workspace-root>

Weitere Informationen

Lizenz

MIT