Local Dev Bridge MCP
Provides Claude Desktop with direct access to your local file system for development tasks, enabling file operations (read, write, edit), directory browsing, command execution, and codebase search within a configured projects directory.
README
Local Dev Bridge MCP
A Model Context Protocol (MCP) server that provides Claude Desktop with direct access to your local file system for development tasks. This tool enables Claude to read, write, edit files, run commands, and search through your codebase.
Features
- 📖 Read files - View contents of any file in your project
- ✏️ Write files - Create new files or overwrite existing ones
- 🔧 Edit files - Make precise edits by replacing specific text
- 📁 Browse directories - List contents of folders
- 💻 Run commands - Execute shell commands (npm, git, tests, etc.)
- 🔍 Search files - Search for text across your entire codebase
Prerequisites
- Node.js 16 or higher
- npm or yarn
- Claude Desktop application
Installation
Step 1: Clone the Repository
git clone https://github.com/YOUR_USERNAME/local-dev-bridge-mcp.git
cd local-dev-bridge-mcp
Step 2: Install Dependencies
npm install
Step 3: Configure Claude Desktop
-
Open Claude Desktop settings
-
Navigate to the "Developer" section
-
Find the MCP configuration file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
- macOS:
-
Edit the configuration file and add the local-dev-bridge server:
{
"mcpServers": {
"local-dev-bridge": {
"command": "node",
"args": ["/absolute/path/to/local-dev-bridge-mcp/index.js"],
"env": {
"PROJECTS_DIR": "/Users/YOUR_USERNAME/Desktop/Projects"
}
}
}
}
Important: Replace the following:
/absolute/path/to/local-dev-bridge-mcp/index.jswith the actual path to where you cloned this repository/Users/YOUR_USERNAME/Desktop/Projectswith the path to your projects directory
Step 4: Restart Claude Desktop
After saving the configuration file, completely quit and restart Claude Desktop for the changes to take effect.
Configuration
Setting the Projects Directory
The MCP server uses a base directory for all file operations. By default, it uses ~/Desktop/Projects. You can customize this by setting the PROJECTS_DIR environment variable in the Claude configuration:
"env": {
"PROJECTS_DIR": "/your/custom/path"
}
Usage
Once installed, Claude will have access to the following tools:
Read a File
Ask Claude to read any file in your project:
- "Read the package.json file"
- "Show me the contents of src/index.js"
Write a File
Create new files or replace existing ones:
- "Create a new React component in src/components/Button.jsx"
- "Write a README.md file"
Edit a File
Make specific changes to existing files:
- "Change the port number from 3000 to 8080 in server.js"
- "Update the version in package.json to 2.0.0"
List Directory Contents
Browse your project structure:
- "What files are in the src folder?"
- "List all directories in the project"
Run Commands
Execute shell commands:
- "Run npm install"
- "Execute the test suite"
- "Initialize a git repository"
Search Files
Find text across your codebase:
- "Search for 'TODO' in all JavaScript files"
- "Find all occurrences of 'useState' in the project"
Security Considerations
⚠️ Important: This tool provides Claude with direct access to your file system. Please note:
- File System Access: Claude can read, write, and execute commands in the configured directory
- Scope Limitation: Operations are limited to the
PROJECTS_DIRpath and its subdirectories - Command Execution: Be cautious when allowing command execution capabilities
- Sensitive Data: Avoid using this in directories containing sensitive credentials or private keys
Troubleshooting
MCP Server Not Appearing in Claude
- Ensure the path in
claude_desktop_config.jsonis absolute and correct - Check that Node.js is installed and accessible from the command line
- Verify the configuration JSON is valid (no syntax errors)
- Completely quit and restart Claude Desktop (not just close the window)
Permission Errors
- On macOS/Linux, ensure the script has execute permissions:
chmod +x index.js - Verify that Claude Desktop has permissions to access your projects directory
Server Connection Issues
Check the Claude Desktop logs for error messages:
- macOS:
~/Library/Logs/Claude/ - Windows:
%APPDATA%\Claude\Logs\ - Linux:
~/.config/Claude/Logs/
Development
Running Locally for Testing
You can test the MCP server standalone:
npm start
This will start the server on stdio, which you can interact with for debugging.
Adding New Tools
To add new tools, modify the setupToolHandlers() method in index.js:
- Add the tool definition in the
ListToolsRequestSchemahandler - Implement the tool logic in the
CallToolRequestSchemahandler - Create a corresponding method in the class
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT
Support
For issues and questions, please open an issue on GitHub.
Quick Start for Team Members
For macOS Users:
# 1. Clone the repo
git clone https://github.com/YOUR_USERNAME/local-dev-bridge-mcp.git
cd local-dev-bridge-mcp
# 2. Install dependencies
npm install
# 3. Get the full path
pwd # Copy this path
# 4. Edit Claude config
open ~/Library/Application\ Support/Claude/claude_desktop_config.json
# 5. Add the configuration (see Step 3 above)
# 6. Restart Claude Desktop
For Windows Users:
# 1. Clone the repo
git clone https://github.com/YOUR_USERNAME/local-dev-bridge-mcp.git
cd local-dev-bridge-mcp
# 2. Install dependencies
npm install
# 3. Get the full path
pwd # Copy this path
# 4. Edit Claude config
notepad $env:APPDATA\Claude\claude_desktop_config.json
# 5. Add the configuration (see Step 3 above)
# 6. Restart Claude Desktop
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.