MCP Hub
Back to servers

DevUtils MCP Server

Provides essential developer tools for workspace management, including advanced file searching, project structure analysis, and batch code editing. It enables users to efficiently navigate, analyze, and modify source code within their development environment.

Updated
Feb 16, 2026

DevUtils MCP Server

Developer utilities MCP server providing essential tools for workspace management, file operations, and project analysis.

Tools

ToolDescription
file_searchFind files matching glob patterns
grep_searchSearch for patterns in files
project_infoGet project structure summary
file_infoGet detailed file information
list_treeList directory contents in tree format
batch_editBatch find/replace across files
code_statsGet code statistics by language

Installation

cd /root/.openclaw/workspace/devutils-mcp-server
npm install

Usage

Via mcporter

Add to your mcporter config:

{
  "mcpServers": {
    "devutils": {
      "command": "node",
      "args": ["src/server.js"],
      "cwd": "/root/.openclaw/workspace/devutils-mcp-server",
      "disabled": false
    }
  }
}

Then restart mcporter:

mcporter restart

Direct

npm start

Examples

Find all JavaScript files

{
  "pattern": "**/*.js"
}

Search for a pattern

{
  "pattern": "TODO",
  "options": {
    "context": 3,
    "caseInsensitive": true
  }
}

Get project stats

{
  "path": ".",
  "maxDepth": 2
}

Author

Cipher

Reviews

No reviews yet

Sign in to write a review