Essential developer tools for workspace management and project analysis.
DevUtils MCP Server
Developer utilities MCP server providing essential tools for workspace management, file operations, and project analysis.
Tools
| Tool | Description |
|---|---|
file_search |
Find files matching glob patterns |
grep_search |
Search for patterns in files |
project_info |
Get project structure summary |
file_info |
Get detailed file information |
list_tree |
List directory contents in tree format |
batch_edit |
Batch find/replace across files |
code_stats |
Get 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
Tools (7)
file_searchFind files matching glob patternsgrep_searchSearch for patterns in filesproject_infoGet project structure summaryfile_infoGet detailed file informationlist_treeList directory contents in tree formatbatch_editBatch find/replace across filescode_statsGet code statistics by languageConfiguration
{"mcpServers": {"devutils": {"command": "node", "args": ["src/server.js"], "cwd": "/root/.openclaw/workspace/devutils-mcp-server", "disabled": false}}}