Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

BACH CodeCommander

NPM · BACH-CODECOMMANDER-MCP · SCANNED AUG 3

17 tools for code analysis, JSON repair, encoding fix, format conversion, diff, and regex.

+16 this week 56 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (106 of 110), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (106 of 110), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
Schema Quality & AI Usability54
  • AI-judged instruction clarity (fair).Partial
  • Tool/resource definitions use about 1706 tokens (~94/item across 18 items; 18 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · bach-codecommander-mcp

# add to Claude Code
claude mcp add lukisch-bach-codecommander-mcp -- npx -y bach-codecommander-mcp
# add to Codex CLI
codex mcp add lukisch-bach-codecommander-mcp -- npx -y bach-codecommander-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "lukisch-bach-codecommander-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "bach-codecommander-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add lukisch-bach-codecommander-mcp --command npx --arg -y --arg bach-codecommander-mcp
# ~/.hermes/config.yaml
mcp_servers:
  lukisch-bach-codecommander-mcp:
    command: "npx"
    args: ["-y", "bach-codecommander-mcp"]
// mcp.json
{
  "mcpServers": {
    "lukisch-bach-codecommander-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bach-codecommander-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +40
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Security disclosure: fail → unverified functional
    • Tool coverage: 100 → unverified functional
    • License: unverified → pass functional
    • Schema quality: unverified → fair functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Licence: MIT functional
  • 1 Aug 26 +16
    • Tool coverage: unverified → 100 functional
  • 31 Jul 26 −40
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 28 Jul 26 0
    • Security disclosure: unverified → fail functional
  • 27 Jul 26 40

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 106 packages

106 packages in the resolved dependency tree · 106 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 18 exposed · ~1,706 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
cc_analyze_code ~68

Analyzes a Python file: classes, functions, imports, metrics. Args: - path (string): Path to the Python file Returns: - Classes with methods, functions, import analysis, LOC, complexity

NameTypeReqDescription
pathstringyesPath to the Python file

No output schema declared.

No examples provided.

cc_analyze_methods ~86

Detailed method analysis of a Python file. Args: - path (string): Path to the Python file - class_name (string, optional): Only methods of this class Returns: - Methods with parameters, decorators, complexity, data flow

NameTypeReqDescription
class_namestringOnly analyze this class
pathstringyesPath to the Python file

No output schema declared.

No examples provided.

cc_cleanup_file ~178

Cleans up source code files: BOM, NUL bytes, trailing whitespace, line endings. Args: - path (string): Path to the file - remove_bom (boolean): Remove BOM - remove_trailing_whitespace (boolean): Trailing whitespace - normalize_line_endings (string): "lf" | "crlf" - remove_nul_bytes (boolean): Remove NUL bytes - dry_run (boolean): Preview only

NameTypeReqDescription
dry_runbooleanPreview only
normalize_line_endingsstringLine endings
pathstringyesPath to the file
remove_bombooleanRemove BOM
remove_nul_bytesbooleanNUL bytes
remove_trailing_whitespacebooleanTrailing whitespace

No output schema declared.

No examples provided.

cc_convert_format ~182

Converts between JSON, CSV, INI, YAML, TOML, XML, and TOON formats. Args: - input_path (string): Source file - output_path (string): Target file - input_format (string): "json" | "csv" | "ini" | "yaml" | "toml" | "xml" | "toon" - output_format (string): "json" | "csv" | "ini" | "yaml" | "toml" | "xml" | "toon" - json_indent (number): JSON indentation

NameTypeReqDescription
input_formatstringyesInput format
input_pathstringyesSource file
json_indentintegerJSON indentation
output_formatstringyesOutput format
output_pathstringyesTarget file

No output schema declared.

No examples provided.

cc_diagnose_imports ~65

Diagnoses import issues: missing modules, circular imports, unused imports. Args: - path (string): Path to the Python file Detects: Missing modules, suspected circular imports, import issues

NameTypeReqDescription
pathstringyesPath to the Python file

No output schema declared.

No examples provided.

cc_diff_files ~64

Vergleicht zwei Dateien und zeigt Unterschiede im Unified-Diff-Format

NameTypeReqDescription
context_linesintegerNumber of context lines (default: 3)
file_astringyesPath to first file
file_bstringyesPath to second file

No output schema declared.

No examples provided.

cc_extract_classes ~82

Extracts Python classes and functions from a file as separate text blocks. Args: - path (string): Path to the Python file - output_dir (string, optional): Output directory (otherwise display only) Useful for code review and documentation.

NameTypeReqDescription
output_dirstringOutput directory
pathstringyesPath to the Python file

No output schema declared.

No examples provided.

cc_fix_encoding ~103

Repairs encoding errors (Mojibake, double UTF-8). Args: - path (string): Path to the file - dry_run (boolean): Preview only - create_backup (boolean): Create backup Repairs 27+ Mojibake patterns (German, French, Spanish).

NameTypeReqDescription
create_backupbooleanCreate backup
dry_runbooleanPreview only
pathstringyesPath to the file

No output schema declared.

No examples provided.

cc_fix_json ~99

Automatically repairs common JSON errors. Args: - path (string): Path to the JSON file - dry_run (boolean): Only show issues - create_backup (boolean): Create backup Repairs: BOM, trailing commas, single quotes, comments, NUL bytes

NameTypeReqDescription
create_backupbooleanCreate backup
dry_runbooleanPreview only
pathstringyesPath to the JSON file

No output schema declared.

No examples provided.

cc_fix_umlauts ~100

Repairs broken German umlauts in source code files. Args: - path (string): Path to the file - dry_run (boolean): Preview only - create_backup (boolean): Create backup Detects 70+ patterns of broken umlauts and replaces them correctly.

NameTypeReqDescription
create_backupbooleanCreate backup
dry_runbooleanPreview only
pathstringyesPath to the file

No output schema declared.

No examples provided.

cc_generate_licenses ~104

Generates a third-party license file for an npm or Python project. Args: - project_dir (string): Project directory - output_path (string): Output file - format (string): "text" | "json" | "csv" Reads package.json (npm) or pip packages and collects license info.

NameTypeReqDescription
formatstringFormat
output_pathstringyesOutput file
project_dirstringyesProject directory

No output schema declared.

No examples provided.

cc_md_to_html ~102

Converts Markdown to formatted HTML (printable as PDF). Args: - input_path (string): Path to the Markdown file - output_path (string): Path to the HTML output - title (string, optional): Document title Produces standalone HTML with CSS styling, printable as PDF via browser.

NameTypeReqDescription
input_pathstringyesMarkdown file
output_pathstringyesHTML output
titlestringDocument title

No output schema declared.

No examples provided.

cc_md_to_pdf ~118

Converts Markdown to PDF using a headless browser (Edge/Chrome). Args: - input_path (string): Path to the Markdown file - output_path (string): Path to the PDF output - title (string, optional): Document title Uses the same Markdown parser as cc_md_to_html. Requires Edge or Chrome. Falls back to HTML if no browser is found.

NameTypeReqDescription
input_pathstringyesMarkdown file
output_pathstringyesPDF output
titlestringDocument title

No output schema declared.

No examples provided.

cc_organize_imports ~99

Organizes Python imports per PEP 8: sorted, deduplicated, grouped. Args: - path (string): Path to the Python file - dry_run (boolean): Preview only Groups: 1) __future__ 2) stdlib 3) third-party 4) local

NameTypeReqDescription
dry_runbooleanPreview only
pathstringyesPath to the Python file

No output schema declared.

No examples provided.

cc_regex_test ~96

Testet regulaere Ausdruecke gegen Text oder Dateiinhalt

NameTypeReqDescription
file_pathstringFile to test against (alternative to text)
flagsstringRegex flags (g, i, m, s, u)
patternstringyesRegular expression pattern
replace_withstringOptional replacement string
textstringText to test against (or use file_path)

No output schema declared.

No examples provided.

cc_scan_emoji ~88

Scans files for emojis and shows ASCII alternatives. Args: - path (string): Path to the file or directory - recursive (boolean): Scan recursively - extensions (string): Only certain extensions Useful for systems that don't support Unicode/Emoji.

NameTypeReqDescription
extensionsstringExtensions
pathstringyesPath
recursivebooleanRecursive

No output schema declared.

No examples provided.

cc_set_language ~27

Set the output language for CodeCommander tools

NameTypeReqDescription
languagestringyesLanguage code

No output schema declared.

No examples provided.

cc_validate_json ~45

Validates JSON with detailed error information and position. Args: - path (string): Path to the JSON file

NameTypeReqDescription
pathstringyesPath to the JSON file

No output schema declared.

No examples provided.