JSPM

fileditor-mcp

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

    MCP server for file operations

    Package Exports

    • fileditor-mcp
    • fileditor-mcp/src/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 (fileditor-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    FileEditor MCP Server

    πŸ“– English Interface Doc | πŸ“– δΈ­ζ–‡ζŽ₯口文摣 | πŸ“‹ δΈ­ζ–‡README

    AI-Optimized File Operations Server - Built on Model Context Protocol, specifically engineered for AI coding assistants to perform sophisticated code editing, refactoring, and batch modification tasks with precision and efficiency.

    🎯 Design Philosophy

    Built for AI Programming - This project is specifically designed for AI models' code editing requirements, providing precise block-level operations, intelligent matching algorithms, and batch processing capabilities that enable AI to safely and efficiently execute complex code modification tasks.

    πŸš€ Core Features

    πŸ“ File Operation Tools (7 Tools)

    • set_workspace - Workspace isolation (must be called first)
    • read_files - Smart file reading (batch, line ranges, with line numbers)
    • write_files - Batch file writing (single/multiple files, create/overwrite)
    • list_files - Directory traversal (recursive support)
    • insert_contents - Precise content insertion (multiple files, negative line numbers, end insertion)
    • apply_diffs - Advanced diff application (batch operations, atomic mode, intelligent whitespace handling)
    • search_and_replace - Pattern replacement (regex, line ranges, case-insensitive)

    πŸ”’ Security Features

    • Workspace Isolation: Strictly limit operation scope, prevent directory traversal attacks
    • Path Security: Automatic validation and resolution of relative paths
    • Atomic Operations: Batch modifications succeed completely or rollback entirely

    ⚑ AI-Optimized Features

    • Batch Processing Engine: Handle multiple file operations in a single API call
    • Intelligent Matching Algorithm: trim mode handles code formatting differences with high tolerance
    • Detailed Operation Feedback: Complete success/failure information for AI debugging and decision-making
    • Non-blocking Error Handling: Partial failures don't prevent other operations from continuing

    πŸ› οΈ Quick Start

    # Install dependencies
    pnpm install
    
    # Start server
    pnpm start
    
    # Development mode (auto-restart)
    pnpm dev
    
    # Run tests
    pnpm test

    Requirements: Node.js β‰₯18, pnpm

    πŸ’‘ Usage Examples

    // Scenario 1: Workspace initialization (must be called first)
    {
      "name": "set_workspace",
      "arguments": { "path": "/path/to/your/project" }
    }
    
    // Scenario 2: Batch code file analysis
    {
      "name": "read_files",
      "arguments": { 
        "path": ["src/main.js", "src/utils.js", "package.json"],
        "line_range": "1-50"  // Optional: read only first 50 lines
      }
    }
    
    // Scenario 3: Intelligent code refactoring (tolerates whitespace differences)
    {
      "name": "apply_diffs",
      "arguments": {
        "path": "src/config.js",
        "search_content": [
          "const API_URL = 'localhost';",
          "const PORT = 3000;"
        ],
        "replace_content": [
          "const API_URL = process.env.API_URL || 'localhost';",
          "const PORT = process.env.PORT || 3000;"
        ],
        "start_line": [5, 7],
        "atomic": true,      // Atomic mode: all succeed or all rollback
        "trim": true         // Smart mode: ignore whitespace differences
      }
    }

    πŸ—οΈ Architecture Design

    src/
    β”œβ”€β”€ index.js              # Application entry
    β”œβ”€β”€ server.js              # MCP server main class
    β”œβ”€β”€ tools/
    β”‚   └── toolDefinitions.js # Tool definitions and schema
    β”œβ”€β”€ handlers/              # Tool handlers
    β”‚   β”œβ”€β”€ applyDiff.js       # apply_diffs (batch + atomic support)
    β”‚   β”œβ”€β”€ readFile.js        # read_files
    β”‚   β”œβ”€β”€ writeFile.js       # write_files 
    β”‚   β”œβ”€β”€ listFiles.js       # list_files
    β”‚   β”œβ”€β”€ insertContent.js   # insert_contents
    β”‚   β”œβ”€β”€ searchAndReplace.js # search_and_replace
    β”‚   └── setWorkspace.js    # set_workspace
    └── utils/
        └── fileUtils.js       # Common file operation utilities

    Design Principles: Modular architecture, single responsibility, easy to maintain and extend

    πŸ“Š Test Coverage

    • βœ… 7 Complete Handler Test Suites
    • βœ… Edge Cases and Error Handling Tests
    • βœ… Batch Operations and Atomic Mode Validation
    • βœ… Security and Path Validation Tests

    πŸŽ‰ Why Choose FileEditor MCP

    1. AI-Native Design - Specifically optimized for AI programming assistants' workflow
    2. High-Performance Batch Processing - Reduce API calls, improve processing efficiency
    3. Intelligent Error Tolerance - Handle real-world code formatting and whitespace differences
    4. Enterprise-Grade Security - Strict workspace isolation and permission control
    5. Complete Test Coverage - Reliability and stability guarantee

    πŸ“„ License

    MIT License - See package.json for details