code-copy-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@code-copy-mcpcopy lines 10-20 from source.py to target.py at line 5"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Code Copy MCP Server
A Model Context Protocol (MCP) server that enables code copy-paste operations between files with security controls and validation.
Table of Contents
Related MCP server: code-review-mcp-server
Features
Line-by-line code copying: Extract specific line ranges from source files
Precise pasting: Insert code at exact line positions in target files
Entire file operations: Copy complete file contents
Search and replace: Find and replace text patterns with backup support
File information: Get metadata and statistics about files
Security controls: Restrict operations to allowed directories
Backup creation: Automatic backups before file modifications
Tools
copy_code
Copy code lines from a source file with optional line numbers.
copy_code(
source_file: str,
start_line: int,
end_line: Optional[int] = None,
include_line_numbers: bool = False
) -> strpaste_code
Paste code at a specific line number in a target file.
paste_code(
target_file: str,
line_number: int,
code: str,
create_backup: bool = True
) -> strcopy_entire_file
Copy the complete content of a source file.
copy_entire_file(
source_file: str,
include_line_numbers: bool = False
) -> strsearch_and_replace
Search and replace text patterns in files.
search_and_replace(
target_file: str,
search_pattern: str,
replacement: str,
case_sensitive: bool = True,
replace_all: bool = True,
create_backup: bool = True
) -> strget_file_info
Get detailed information about a file.
get_file_info(file_path: str) -> strInstallation
Prerequisites
Python 3.11 or higher
UV package manager
Setup
Clone or create the project:
cd /Users/map/Documents/Repos/code-copy-mcpInstall dependencies:
uv installConfigure allowed directories (optional):
cp .env.example .env
# Edit .env to set your ALLOWED_DIRECTORIESUsage
Running the Server
uv run python mcp_server.pyDevelopment Mode
# Activate virtual environment first
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Run server
python mcp_server.pyConfiguration
Create a .env file in the project root:
# Comma-separated list of allowed directories
ALLOWED_DIRECTORIES=/Users/yourname,/Users/yourname/Documents,/Users/yourname/ProjectsIf not specified, defaults to:
User's home directory
Documents folder
Desktop folder
Projects folder (if exists)
Security Features
Path validation prevents directory traversal attacks
File permission checks ensure read/write access
Automatic backup creation before modifications
Restricted operation to configured directories only
Example Workflow
Copy code lines from a source file:
copy_code("/path/to/source.py", start_line=10, end_line=20)Paste the code into target file:
paste_code("/path/to/target.py", line_number=5, code=" copied_code_content ")Get file information:
get_file_info("/path/to/target.py")
Installation & Configuration
Prerequisites
Python 3.11 or higher
UV package manager (recommended) or pip
One of the supported MCP clients
Quick Setup
Clone the repository:
git clone https://github.com/mhattingpete/code-copy-mcp.git cd code-copy-mcpInstall dependencies:
uv sync # Or without UV: pip install -e .Configure allowed directories (optional):
cp .env.example .env # Edit .env to set your ALLOWED_DIRECTORIES
MCP Client Integration
1. Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"code-copy": {
"command": "/full/path/to/uv",
"args": ["--directory", "/full/path/to/code-copy-mcp", "run", "python", "mcp_server.py"],
"env": {
"ALLOWED_DIRECTORIES": "/Users/yourname,/Users/yourname/Documents,/Users/yourname/Projects"
}
}
}
}2. Cursor (AI Code Editor)
Open Cursor settings (
Cmd/Ctrl + ,)Navigate to
Extensions→MCP ServersAdd new server:
Name: Code Copy MCP Command: full/path/to/uv Arguments: --directory /full/path/to/code-copy-mcp run python mcp_server.py Environment Variables: ALLOWED_DIRECTORIES=/Users/yourname,/Users/yourname/Documents,/Users/yourname/Projects
3. Claude Code
Install the Claude Code
Add server configuration:
claude mcp add-json code-copy '{"type":"stdio","command":"full/path/to/uv","args":["--directory", "/full/path/to/code-copy-mcp", "run", "python", "mcp_server.py"],"env": {"ALLOWED_DIRECTORIES": "/Users/yourname,/Users/yourname/Documents,/Users/yourname/Projects"}}'
Configuration
Environment Variables
Create a .env file in the project root:
# Comma-separated list of directories where file operations are allowed
# Examples for different operating systems:
# macOS/Linux:
ALLOWED_DIRECTORIES=/Users/yourname,/Users/yourname/Documents,/Users/yourname/Projects
# Windows:
ALLOWED_DIRECTORIES=C:\Users\YourName,C:\Users\YourName\Documents,C:\Users\YourName\Projects
# If not specified, defaults to:
# - User's home directory
# - Documents folder
# - Desktop folder
# - Projects folder (if exists)Security Configuration
The server only allows operations within the specified directories for security reasons. Make sure to include all directories where you want to perform code copy-paste operations.
Troubleshooting
Common Issues:
"Module not found" errors:
# Ensure dependencies are installed uv install # Or with pip: pip install -e .Permission denied errors:
Check that the allowed directories are correctly configured
Ensure the directories exist and are accessible
MCP Server not appearing:
Verify the command path is correct
Check the client's logs for error messages
Restart the MCP client after configuration changes
Usage Examples
Once configured, you can use the tools within your MCP client:
Example 1: Copy function from one file to another
User: Copy the function calculate_total from utils.py and paste it into main.py at line 50The assistant will:
Use
get_file_infoto examine the filesUse
copy_codewith appropriate line numbersUse
paste_codeat the specified location
Example 2: Replace code with backup
User: Replace all occurrences of "old_method" with "new_method" in all Python files and create backupsThe assistant will:
Use
search_and_replaceon each fileVerify changes with
get_file_infoReport the modifications made
Example 3: Copy entire file
User: Make a copy of template.py as new_template.pyThe assistant will:
Use
copy_entire_fileto get the contentUse
paste_codeto create the new file
Project Structure
code-copy-mcp/
├── mcp_server.py # Main MCP server
├── tools/
│ ├── __init__.py # Package init
│ ├── validation.py # Security validation
│ └── copy_tools.py # Copy-paste tools
├── .env.example # Configuration template
├── pyproject.toml # UV project configuration
└── README.md # This fileDependencies
fastmcp: MCP server framework
pydantic: Data validation
loguru: Structured logging
python-dotenv: Environment file support
Logging
Logs are written to ~/.code-copy-mcp/mcp_server.log with:
Rotation at 1MB
7-day retention
DEBUG level logging for troubleshooting
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mhattingpete/code-copy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server