MCP Start App
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., "@MCP Start Appsearch for TODO comments in my project directory"
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.
MCP Start App
A comprehensive Model Context Protocol (MCP) server for advanced local file management and system operations.
Features
๐๏ธ File Operations
Read/Write Files: Full support for text file operations with encoding handling
List Directories: Browse filesystem with size information and hidden file support
File Information: Detailed metadata including permissions, timestamps, and size
Path Validation: Robust path handling with security checks
โ๏ธ Advanced File Editing
Line-based Editing: Edit, insert, or delete specific lines in files
Find & Replace: Text replacement with regex support across multiple files
Diff Viewing: Compare current files with backups
Edit History: Track all file modifications with detailed logs
๐ Advanced Search Capabilities
VSCode-like Search: Advanced search across multiple files with context
File Type Filtering: Search by extension groups (code, web, config, etc.)
Pattern Matching: Support for wildcards and regex
Context Display: Show surrounding lines for search results
File Name Search: Find files by name patterns
Search Statistics: Analyze file distribution and sizes
๐ป System Operations
Command Execution: Safe execution of system commands
System Information: Hardware and software details
Process Management: View running processes
File Finding: Advanced file discovery with patterns
๐ง Code Tools
Syntax Validation: Check syntax for Python, JavaScript, JSON, etc.
Code Formatting: Format code using standard formatters (Black, Prettier)
Language Detection: Auto-detect programming languages
๐ Backup & History
Automatic Backups: Files are backed up before modifications
Edit Tracking: Complete history of all file operations
Restoration: Easy restore from backups
History Analysis: Statistics and insights on editing patterns
๐ก๏ธ Security & Safety
Path Validation: Prevents directory traversal attacks
File Size Limits: Configurable limits to prevent memory issues
Command Filtering: Restricted dangerous command execution
Backup System: Automatic backup before destructive operations
Related MCP server: Code Editor MCP Server
Quick Start
1. Installation
# Clone or navigate to the project
cd /Users/{{USERNAME}}/Documents/mcp-start-app
# Run the installation script (sets up venv and installs everything)
./scripts/install.sh2. Activation
# Activate the virtual environment
source venv/bin/activate
# Run the server
mcp-start-app3. Alternative Run Methods
# Using the run script (auto-activates venv)
./scripts/run_server.py
# Direct Python execution
source venv/bin/activate
python -m mcp_start_app.mainConfiguration
Claude Desktop Configuration
Add to your Claude Desktop config file:
{
"mcpServers": {
"mcp-start-app": {
"command": "/Users/{{USERNAME}}/Documents/mcp-start-app/scripts/run_server.py",
"args": []
}
}
}Available Tools
Basic File Operations
list_files(directory, show_hidden)- List directory contentsread_file(file_path)- Read text file contentswrite_file(file_path, content)- Write content to fileget_file_lines(file_path, start_line, end_line)- Get specific linesget_file_info(file_path)- Get detailed file information
Advanced File Editing
edit_file_lines(file_path, start_line, new_content, end_line)- Edit specific linesinsert_lines(file_path, line_number, content)- Insert new linesdelete_lines(file_path, start_line, end_line)- Delete linesreplace_in_file(file_path, search_pattern, replace_with, use_regex)- Find & replaceget_file_diff(file_path, backup_file)- Show file differencesget_edit_history(limit, file_path)- View edit history
Advanced Search Tools
search_adv(search_term, search_path, case_sensitive, whole_word, use_regex, include_patterns, exclude_patterns, file_types, max_results, context_lines, show_hidden)- Advanced multi-file searchreplace_adv(search_term, replace_with, search_path, case_sensitive, whole_word, use_regex, include_patterns, exclude_patterns, file_types, dry_run, backup)- Advanced multi-file replacesearch_files_by_name(filename_pattern, search_path, case_sensitive, exact_match, show_hidden, exclude_patterns)- Search files by namesearch_in_files(search_pattern, directory, file_pattern, use_regex)- Simple text searchget_search_stats(search_path)- Get directory statistics
System Tools
run_command(command)- Execute system commands (with safety restrictions)get_system_info()- Get comprehensive system informationfind_files(pattern, directory, max_results)- Find files by patternget_running_processes()- View running processes
Code Tools
validate_syntax(file_path)- Check code syntaxformat_code(file_path, language)- Format code files
Data Tools
get_local_data(query)- Local data queries
Project Structure
mcp-start-app/
โโโ ๐ venv/ # Virtual environment
โโโ ๐ src/mcp_local/ # Main package
โ โโโ ๐ core/ # Core utilities & config
โ โโโ ๐ services/ # Business logic layer
โ โโโ ๐ tools/ # MCP tool implementations
โ โ โโโ file_operations.py # Basic file tools
โ โ โโโ file_editing.py # Advanced editing tools
โ โ โโโ search_tools.py # Search and replace tools
โ โ โโโ system_tools.py # System operation tools
โ โ โโโ code_tools.py # Code formatting and validation
โ โโโ main.py # Entry point
โ โโโ server.py # Server configuration
โโโ ๐ tests/ # Test suite
โโโ ๐ scripts/ # Installation & run scripts
โโโ requirements.txt # Dependencies
โโโ pyproject.toml # Python packaging
โโโ README.md # This fileDevelopment
Running Tests
source venv/bin/activate
pytest # Run all tests
pytest --cov # Run with coverageCode Quality
source venv/bin/activate
black src/ tests/ # Format code
isort src/ tests/ # Sort imports
flake8 src/ tests/ # Lint code
mypy src/ # Type checkingLicense
This project is licensed under the MIT License.
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.
Related MCP Servers
- Alicense-qualityFmaintenanceEnables secure local filesystem operations and interactive terminal sessions for AI assistants. Provides 12 tools for file management, directory operations, code searching, and running interactive REPLs with security protections.Last updated41MIT
- AlicenseAqualityCmaintenanceEnables safe, concurrent file system operations with sandboxed directory access control, automatic encoding detection, optimistic locking, and precise code editing capabilities including search-replace and batch operations.Last updated105MIT
- AlicenseAqualityAmaintenanceProvides intelligent file system operations with advanced features including code analysis and modification across multiple languages, version control (Git/GitHub), file compression, encryption, semantic search, batch operations, and secure shell command execution.Last updated16MIT
- FlicenseAqualityDmaintenanceEnables comprehensive local file system operations including searching and reading content from various formats like PDF, Office documents, CSV, and text files. It features automatic character encoding detection and secure path validation for directory access.Last updated71
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Operate your own Linux servers from your LLM. Requires the SentinelX agent installed per host.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yoโฆ
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/nexus-aissam/mcp-local'
If you have feedback or need assistance with the MCP directory API, please join our Discord server