CLAUDE-CODE-ORGANIZER(1)

NAME

claude-code-organizerOrganize all your Claude Code configs in one dashboard — memories, skills, MCP servers, commands, agents, rules,…

SYNOPSIS

$npm install -g @mcpware/claude-code-organizer

INFO

216 stars
19 forks
0 views

DESCRIPTION

Organize all your Claude Code configs in one dashboard — memories, skills, MCP servers, commands, agents, rules, hooks. Drag-and-drop between scopes.

README

Claude Code Organizer

npm version npm downloads GitHub stars GitHub forks License: MIT Node.js claude-code-organizer MCP server

English | 简体中文 | 繁體中文 | 日本語 | 한국어 | Español | Bahasa Indonesia | Italiano | Português | Türkçe | Tiếng Việt | ไทย

Organize all your Claude Code memories, skills, MCP servers, commands, agents, rules, and hooks — view by scope hierarchy, move between scopes via drag-and-drop.

Claude Code Organizer Demo

Demo video recorded by AI automatically using Pagecast

The Problem

Claude Code silently creates memories, skills, MCP configs, commands, agents, and rules every time you work — and dumps them into whatever scope matches your current directory. A preference you wanted everywhere? Trapped in one project. A deploy skill that belongs to one repo? Leaked into global, contaminating every other project.

This isn't just messy — it hurts your AI's performance. Every session, Claude loads all configs from the current scope plus everything inherited from parent scopes into your context window. Wrong-scope items = wasted tokens, polluted context, and lower accuracy. A Python pipeline skill sitting in global gets loaded into your React frontend session. Duplicate MCP entries initialize the same server twice. Stale memories contradict your current instructions.

"Just ask Claude to fix it"

You could ask Claude Code to manage its own config. But you'll go back and forth — ls one directory, cat each file, try to piece together the full picture from fragments of text output. There's no command that shows the entire tree across all scopes, all items, all inheritance at once.

The fix: a visual dashboard

npx @mcpware/claude-code-organizer

One command. See everything Claude has stored — organized by scope hierarchy. Drag items between scopes. Delete stale memories. Find duplicates. Take control of what actually influences Claude's behavior.

Example: Project → Global

You told Claude "I prefer TypeScript + ESM" while inside a project, but that preference applies everywhere. Open the dashboard, drag that memory from Project to Global. Done. One drag.

Example: Global → Project

A deploy skill sitting in global only makes sense for one repo. Drag it into that Project scope — other projects won't see it anymore.

Example: Delete stale memories

Claude auto-creates memories from things you said casually, or things it thought you wanted remembered. A week later they're irrelevant but still loaded into every session. Browse, read, delete. You control what Claude thinks it knows about you.


Comparison

We analyzed the source code of every Claude Code tool we could find — analytics dashboards (9K+ stars), desktop apps (600+ stars), VS Code extensions, TUI session managers, terminal statuslines. None offered true scope hierarchy + drag-and-drop cross-scope moves in a standalone dashboard.

FeatureClaude Code OrganizerDesktop app (600+⭐)VS Code extensionAnalytics dashboardsTUI tools
True scope hierarchy (Global > Workspace > Project)YesNoPartial (no workspace)NoNo
Drag-and-drop movesYesNoNoNoNo
Cross-scope movesYesNoOne-clickNoNo
Undo on every actionYesNoNoNoNo
Bulk operationsYesNoNoNoNo
Real MCP server managementYesGlobal onlyStub (icon only)NoNo
Commands + Agents + RulesYesNoNoNoNo
Session managementYesNoNoYesYes
Search & filterYesNoYesYesNo
MCP tools (AI-accessible)YesNoNoNoNo
Zero dependenciesYesNo (Tauri+React)No (VS Code)No (Next.js/FastAPI)No (Python)
Standalone (no IDE)YesYesNoYesYes

Features

  • Scope-aware hierarchy — See all items organized as Global > Workspace > Project, with inheritance indicators
  • Drag-and-drop — Move memories, skills, commands, agents, rules, MCP servers, and plans between scopes
  • Undo everything — Every move and delete has an undo button — restore instantly, including MCP JSON entries
  • Bulk operations — Select mode: tick multiple items, move or delete all at once
  • Same-type safety — Each category moves to its own directory — memories to memory/, skills to skills/, commands to commands/, etc.
  • Search & filter — Real-time search across all items, filter by category with smart pill hiding (zero-count pills collapse into "+N more")
  • Detail panel — Click any item to see full metadata, content preview, file path, and open in VS Code
  • Session inspector — Parsed conversation previews with speaker labels, session titles, and metadata
  • 11 categories — Memories, skills, MCP servers, commands, agents, rules, configs, hooks, plugins, plans, and sessions
  • Bundled skill detection — Groups skills by source bundle via skills-lock.json
  • Contextual Claude Code prompts — "Explain This", "Edit Content", "Edit Command", "Edit Agent", "Resume Session" buttons that copy to clipboard
  • Auto-hide detail panel — Panel stays hidden until you click an item, maximizing content area
  • Resizable panels — Drag dividers to resize sidebar, content area, and detail panel
  • Real file moves — Actually moves files in ~/.claude/, not just a viewer
  • Path traversal protection — All file endpoints validate paths are within HOME directory
  • Cross-device support — Automatic copy+delete fallback when rename fails across filesystems (Docker/WSL)
  • 92 E2E tests — Playwright test suite covering filesystem verification, security (path traversal, malformed input), and all 11 categories

Why a Visual Dashboard?

Claude Code can already list and move files via CLI — but you're stuck playing 20 questions with your own config. The dashboard gives you full visibility in one glance:

What you needAsk ClaudeVisual Dashboard
See everything at once across all scopesls one directory at a time, piece it togetherScope tree, one glance
What's loaded in my current project?Run multiple commands, hope you got them allOpen project → see full inheritance chain
Move items between scopesFind encoded paths, mv manuallyDrag-and-drop with confirmation
Read config contentcat each file one by oneClick → side panel
Find duplicates / stale itemsgrep across cryptic directoriesSearch + filter by category
Clean up unused memoriesFigure out which files to deleteBrowse, read, delete in-place

Quick Start

Option 1: npx (no install needed)

npx @mcpware/claude-code-organizer

Option 2: Global install

npm install -g @mcpware/claude-code-organizer
claude-code-organizer

Option 3: Ask Claude

Paste this into Claude Code:

Run npx @mcpware/claude-code-organizer — it's a dashboard for managing Claude Code settings. Tell me the URL when it's ready.

Opens a dashboard at http://localhost:3847. Works with your real ~/.claude/ directory.

What It Manages

TypeViewMoveDeleteScanned at
Memories (feedback, user, project, reference)YesYesYesGlobal + Project
Skills (with bundle detection)YesYesYesGlobal + Project
MCP ServersYesYesYesGlobal + Project
Commands (slash commands)YesYesYesGlobal + Project
Agents (subagents)YesYesYesGlobal + Project
Rules (project constraints)YesYesYesGlobal + Project
PlansYesYesYesGlobal + Project
SessionsYesYesProject only
Config (CLAUDE.md, settings.json)YesLockedGlobal + Project
HooksYesLockedGlobal + Project
PluginsYesLockedGlobal only

Scope Hierarchy

Global                       <- applies everywhere
  Company (workspace)        <- applies to all sub-projects
    CompanyRepo1             <- project-specific
    CompanyRepo2             <- project-specific
  SideProjects (project)     <- independent project
  Documents (project)        <- independent project

Child scopes inherit parent scope's memories, skills, MCP servers, commands, agents, and rules.

How It Works

  1. Scans ~/.claude/ — discovers all projects, memories, skills, MCP servers, commands, agents, rules, hooks, plugins, plans, and sessions
  2. Resolves scope hierarchy — determines parent-child relationships from filesystem paths
  3. Renders dashboard — three-panel layout: sidebar scope tree, category-grouped items, detail panel with content preview
  4. Handles moves — drag or click "Move to...", moves files on disk with safety checks, undo support
  5. Handles deletes — delete with undo, bulk delete, session cleanup

Platform Support

PlatformStatus
Ubuntu / LinuxSupported
macOS (Intel + Apple Silicon)Supported (community-tested on Sequoia M3)
WindowsNot yet
WSLShould work (untested)

Project Structure

src/
  scanner.mjs       # Scans ~/.claude/ — 11 categories, pure data, no side effects
  mover.mjs         # Moves/deletes files between scopes — safety checks + undo support
  server.mjs        # HTTP server — 8 REST endpoints
  mcp-server.mjs    # MCP server — 4 tools for AI clients (scan, move, delete, destinations)
  ui/
    index.html       # Three-panel layout with resizable dividers
    style.css        # All styling (edit freely, won't break logic)
    app.js           # Frontend: drag-drop, search, filters, bulk ops, undo, session preview
bin/
  cli.mjs            # Entry point (--mcp flag for MCP server mode)

Frontend and backend are fully separated. Edit src/ui/ files to change the look without touching any logic.

API

The dashboard is backed by a REST API:

EndpointMethodDescription
/api/scanGETScan all customizations, returns scopes + items + counts
/api/movePOSTMove an item to a different scope (supports category/name disambiguation)
/api/deletePOSTDelete an item (memory, skill, MCP, command, agent, rule, plan, session)
/api/restorePOSTRestore a deleted file (undo support)
/api/restore-mcpPOSTRestore a deleted MCP server JSON entry (undo support)
/api/destinationsGETGet valid move destinations for an item
/api/file-contentGETRead file content for detail panel preview
/api/session-previewGETParse JSONL session into readable conversation with speaker labels

License

MIT

More from @mcpware

ProjectWhat it doesInstall
Instagram MCP23 Instagram Graph API tools — posts, comments, DMs, stories, analyticsnpx @mcpware/instagram-mcp
UI AnnotatorHover labels on any web page — AI references elements by namenpx @mcpware/ui-annotator
PagecastRecord browser sessions as GIF or video via MCPnpx @mcpware/pagecast
LogoLoomAI logo design → SVG → full brand kit exportnpx @mcpware/logoloom

Author

ithiria894 — Building tools for the Claude Code ecosystem.

SEE ALSO

clihub3/25/2026CLAUDE-CODE-ORGANIZER(1)