Skip to main content
Glama
muneeb3778

react-dev-mcp

by muneeb3778

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
read_fileC

Read a UTF-8 text file from an allowed folder.

write_fileC

Replace the full content of a UTF-8 text file.

create_fileB

Create a new UTF-8 text file. Fails if the file already exists.

create_directoryC

Create a directory inside an allowed folder.

rename_fileC

Rename or move a file or directory inside allowed folders.

delete_fileC

Delete a file or directory inside an allowed folder.

list_directoryC

List files and folders inside an allowed folder.

search_textC

Search UTF-8 text files for a string inside an allowed file or folder.

replace_textC

Replace text inside one allowed UTF-8 text file.

run_terminal_commandB

Run one allowlisted command inside an allowed folder without a shell.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.3/5.0

Scored across 10 tools

Disambiguation5/5

Each tool targets a distinct file operation: read vs write vs create vs rename vs delete are all clearly separated. search_text and replace_text differ clearly (searching vs modifying content), and run_terminal_command stands apart as the only shell-execution tool. No two tools appear to do the same thing.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern: read_file, write_file, create_file, create_directory, rename_file, delete_file, list_directory, search_text, replace_text, run_terminal_command. The pattern is perfectly uniform with no deviations.

Tool Count5/5

Ten tools is right in the sweet spot for a filesystem/development server. Each tool covers a distinct file, directory, text, or command operation without redundancy, and the count feels neither thin nor bloated for the stated purpose.

Completeness4/5

The file/directory CRUD lifecycle is well covered: create, read, write, update (replace_text), rename, delete, and list. Minor gaps exist—such as no append_text or copy_file operation—but agents can compose the existing tools (read + write) to fill most gaps, so no dead ends are present.

Maintenance

ActivitySlowing
ResponsivenessNo issues