M
MCP Commander
by @jungho-dev
MCP server by jungho-dev
Created 4/29/2026
Updated about 3 hours ago
README
Repository documentation and setup instructions
@jungho/mcp-commander
Overview
@jungho/mcp-commander is a stdio-based MCP server for filesystem access, process execution, search,
configuration management, and surgical file editing.
Install
npm install -g @jungho/mcp-commander
Usage
Use the published CLI name in your MCP client configuration.
{
"mcpServers": {
"desktop-commander": {
"command": "mcp-commander"
}
}
}
Local Development
bun run buildcompiles the TypeScript server todist/.bun run checkruns the TypeScript contract check without emitting files.bun run testrebuilds the project and runs the integration-style test runner.npm pack --dry-runvalidates the publish tarball surface.
Repository Structure
src/config/contains persisted configuration contracts and loaders.src/core/contains server bootstrap, stdio transport, and shared command coordination.src/handlers/maps MCP tool requests onto runtime tool implementations.src/tools/contains the main filesystem, process, search, and edit tool behavior.src/utils/contains shared helpers, including file format readers and process utilities.src/tests/contains the build-backed integration and smoke tests used before release.
Packaging Notes
- The published package ships the compiled
dist/runtime plus release docs. - Source files, test fixtures, and local runtime artifacts stay outside the npm tarball.
Quick Setup
Installation guide for this server
Install Package (if required)
npx @modelcontextprotocol/server-mcp-commander
Cursor configuration (mcp.json)
{
"mcpServers": {
"jungho-dev-mcp-commander": {
"command": "npx",
"args": [
"jungho-dev-mcp-commander"
]
}
}
}