DevUtils MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| file_searchC | Find files matching glob patterns in the workspace |
| grep_searchC | Search for text patterns in files |
| project_infoC | Get project structure summary and statistics |
| file_infoC | Get detailed information about a file |
| list_treeC | List directory contents in tree format |
| batch_editC | Perform batch find/replace operations across files |
| code_statsB | Get code statistics (lines, files, languages) for a project |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Every tool has a clearly distinct purpose with no ambiguity: batch_edit modifies files, code_stats provides project metrics, file_info gives file details, file_search finds files by name, grep_search searches file contents, list_tree shows directory structure, and project_info summarizes the project. The descriptions clearly differentiate each tool's function.
All tools follow a consistent snake_case verb_noun pattern (e.g., batch_edit, code_stats, file_info). The naming is highly predictable and readable throughout the set, with no mixing of conventions or stylistic deviations.
With 7 tools, this is well-scoped for a development utilities server. Each tool earns its place by covering distinct aspects of file and project management, such as editing, searching, and analysis, without being overly sparse or bloated.
The tool set provides strong coverage for file and project operations, including search (file_search, grep_search), analysis (code_stats, project_info), and navigation (list_tree, file_info), with batch_edit for modifications. A minor gap is the lack of a tool for creating or deleting files, but agents can work around this for most workflows.