Skip to main content
Glama
talentedmrweb

Local Dev Bridge MCP

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PROJECTS_DIRNoThe base directory for all file operations. By default, it uses ~/Desktop/Projects.~/Desktop/Projects

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
read_fileB

Read the contents of a file from the local file system. Use this to view existing code files.

write_fileA

Create or overwrite a file with new content. Use this to create new files or completely replace existing ones.

edit_fileC

Edit a file by replacing specific text. The old_text must match exactly (including whitespace).

list_directoryC

List files and directories in a given path

run_commandB

Execute a shell command in the projects directory. Use for running npm install, git commands, tests, etc.

search_filesC

Search for text within files in a directory (recursive)

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: edit_file modifies specific text in files, list_directory shows directory contents, read_file reads file contents, run_command executes shell commands, search_files searches text across files, and write_file creates or overwrites files. The descriptions clearly differentiate their functions, making misselection unlikely.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case (e.g., edit_file, list_directory, read_file). There are no deviations in naming conventions, making the set predictable and easy to understand at a glance.

Tool Count5/5

With 6 tools, this server is well-scoped for local development tasks. Each tool earns its place by covering essential file operations (read, write, edit, search, list) and command execution, without being overly sparse or bloated for the domain.

Completeness4/5

The tool surface provides strong coverage for local development workflows, including file CRUD operations (read, write, edit), directory listing, file searching, and command execution. A minor gap is the lack of file deletion or move/copy operations, but agents can work around this using run_command for such tasks.

Maintenance

ActivityInactive
ResponsivenessNo issues