An implementation of Claude Code capabilities using the Model Context Protocol (MCP). This project provides an MCP server that implements Claude Code-like functionality, allowing Claude to directly execute instructions for modifying and improving project files. By leveraging the Model Context Protocol, this implementation enables seamless integration with various MCP clients including Claude Deskt
Add this skill
npx mdskills install SDGLBL/mcp-claude-codeComprehensive MCP server with excellent tool variety and strong security practices
1# MCP Claude Code23An implementation of Claude Code capabilities using the Model Context Protocol (MCP).45## Overview67This project provides an MCP server that implements Claude Code-like functionality, allowing Claude to directly execute instructions for modifying and improving project files. By leveraging the Model Context Protocol, this implementation enables seamless integration with various MCP clients including Claude Desktop.891011## Features1213- **Code Understanding**: Analyze and understand codebases through file access and pattern searching14- **Code Modification**: Make targeted edits to files with proper permission handling15- **Enhanced Command Execution**: Run commands and scripts in various languages with improved error handling and shell support16- **File Operations**: Manage files with proper security controls through shell commands17- **Code Discovery**: Find relevant files and code patterns across your project with high-performance searching18- **Agent Delegation**: Delegate complex tasks to specialized sub-agents that can work concurrently19- **Multiple LLM Provider Support**: Configure any LiteLLM-compatible model for agent operations20- **Jupyter Notebook Support**: Read and edit Jupyter notebooks with full cell and output handling2122## Tools Implemented2324| Tool | Description |25| ----------------- | --------------------------------------------------------------------------------------------------------------------------------- |26| `read` | Read file contents with line numbers, offset, and limit capabilities |27| `write` | Create or overwrite files |28| `edit` | Make line-based edits to text files |29| `multi_edit` | Make multiple precise text replacements in a single file operation with atomic transactions |30| `directory_tree` | Get a recursive tree view of directories |31| `grep` | Fast pattern search in files with ripgrep integration for best performance ([docs](./doc/migration_SearchContentTool_to_Grep.md)) |32| `content_replace` | Replace patterns in file contents |33| `grep_ast` | Search code with AST context showing matches within functions, classes, and other structures |34| `run_command` | Execute shell commands (also used for directory creation, file moving, and directory listing) |35| `notebook_read` | Extract and read source code from all cells in a Jupyter notebook with outputs |36| `notebook_edit` | Edit, insert, or delete cells in a Jupyter notebook |37| `think` | Structured space for complex reasoning and analysis without making changes |38| `dispatch_agent` | Launch one or more agents that can perform tasks using read-only tools concurrently |39| `batch` | Execute multiple tool invocations in parallel or serially in a single request |40| `todo_write` | Create and manage a structured task list |41| `todo_read` | Read a structured task list |4243## Getting Started4445For detailed installation and configuration instructions, please refer to [INSTALL.md](./doc/INSTALL.md).4647For detailed tutorial of 0.3 version, please refer to [TUTORIAL.md](./doc/TUTORIAL.md)4849## Security5051This implementation follows best practices for securing access to your filesystem:5253- Permission prompts for file modifications and command execution54- Restricted access to specified directories only55- Input validation and sanitization56- Proper error handling and reporting5758## Development5960To contribute to this project:61621. Fork the repository632. Create a feature branch (`git checkout -b feature/amazing-feature`)643. Commit your changes (`git commit -m 'Add some amazing feature'`)654. Push to the branch (`git push origin feature/amazing-feature`)665. Open a Pull Request6768## License6970This project is licensed under the MIT License - see the LICENSE file for details.71
Full transparency — inspect the skill content before installing.