JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 33
  • Score
    100M100P100Q100215F
  • License MIT

Refactoring Assistant MCP - Extract functions, convert callbacks to async/await, simplify conditionals, and apply design patterns. Works with Claude Code, Cursor, Windsurf, Roo Code, and any MCP-compatible editor.

Package Exports

  • @j0kz/refactor-assistant-mcp
  • @j0kz/refactor-assistant-mcp/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@j0kz/refactor-assistant-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@j0kz/refactor-assistant-mcp

Intelligent code refactoring with pattern detection and suggestions

npm version Version License: MIT

πŸŽ‰ What's New in v1.0.26

  • πŸ”’ Security Hardened: Fixed ReDoS vulnerabilities with bounded quantifiers
  • πŸ“š Comprehensive Examples: New example files in examples/refactor-assistant/
  • 🎯 Better Error Messages: Structured error codes (REFACTOR_001-006) with actionable suggestions
  • βœ… Production Ready: Enhanced validation for function names, line ranges, and code size limits

πŸš€ Quick Start

Get the complete suite with ONE command:

Claude Code:

# Mac/Linux
curl -fsSL https://raw.githubusercontent.com/j0kz/mcp-agents/main/install-all.sh | bash

# Windows (PowerShell)
irm https://raw.githubusercontent.com/j0kz/mcp-agents/main/install-all.ps1 | iex

Cursor/Windsurf:

# Download complete config
curl -o ~/.cursor/mcp_config.json https://raw.githubusercontent.com/j0kz/mcp-agents/main/mcp_config_all.json

# Or for Windsurf
curl -o ~/.windsurf/mcp_config.json https://raw.githubusercontent.com/j0kz/mcp-agents/main/mcp_config_all.json

Option 2: Install Only This Tool

Claude Code:

claude mcp add refactor-assistant "npx @j0kz/refactor-assistant-mcp" --scope user

Cursor/Windsurf: Add to mcp_config.json:

{
  "mcpServers": {
    "refactor-assistant": {
      "command": "npx",
      "args": ["@j0kz/refactor-assistant-mcp"]
    }
  }
}

Start Using Immediately

After setup, just chat naturally with your AI:

πŸ’¬ You: "Refactor this function to be more readable"
πŸ€– AI: *Analyzes code* Suggestions: Extract 3 methods, rename variables (xβ†’userId), remove nested ifs, add early returns...

πŸ’¬ You: "Extract reusable patterns from these files"
πŸ€– AI: *Finds patterns* Common code in formatDate (used 8x), validation logic (5x). Created shared utils with 40% code reduction...

πŸ’¬ You: "How can I improve this class design?"
πŸ€– AI: Apply: Single Responsibility (split UserManager), Dependency Injection (remove hardcoded DB), Strategy pattern for validators...

✨ Features

♻️ Smart Refactoring - Extract methods, rename, remove duplication 🎯 Pattern Detection - Find code smells and anti-patterns πŸ“ SOLID Principles - Enforce clean code practices πŸ”„ Safe Transformations - Preserve behavior while improving structure

πŸ“¦ Complete @j0kz MCP Suite

Get all 8 professional development tools - install individually or all at once:

# 🎯 Code Quality Suite
npx @j0kz/smart-reviewer-mcp      # AI code review
npx @j0kz/test-generator-mcp      # Auto-generate tests
npx @j0kz/refactor-assistant-mcp  # Refactoring help

# πŸ—οΈ Architecture & Design
npx @j0kz/architecture-analyzer-mcp  # Architecture analysis
npx @j0kz/api-designer-mcp           # API design
npx @j0kz/db-schema-mcp              # Database schemas

# πŸ“š Documentation & Security
npx @j0kz/doc-generator-mcp       # Auto-generate docs
npx @j0kz/security-scanner-mcp    # Security scanning

πŸ‘‰ View complete collection on GitHub

🎯 How It Works

  1. Install once - Run the setup command for your editor
  2. Restart editor - Reload to activate the MCP
  3. Chat naturally - Just ask your AI assistant to help
  4. Get results - The MCP tools work behind the scenes

No configuration files, no complex setup, no API keys needed!

πŸ”§ Editor Support

Editor Status Notes
Claude Code βœ… Full support Recommended
Cursor βœ… Full support Native MCP
Windsurf βœ… Full support Built-in MCP
Roo Code βœ… Full support MCP compatible
Continue βœ… Full support MCP plugin
Zed βœ… Full support MCP support

Any MCP-compatible editor works!

❓ Troubleshooting

MCP not showing up?

  • Restart your editor after installation
  • Check: claude mcp list (Claude Code) to verify connection

Commands not working?

  • Make sure Node.js is installed (node --version)
  • Try reinstalling: Remove and re-add the MCP

Still stuck?

πŸ“„ License

MIT Β© j0KZ


Explore more tools: github.com/j0KZ/mcp-agents | npm: @j0kz