The Local File System and Command Execution for Claude Desktop project is a custom implementation of the Model Context Protocol (MCP) server. It provides tools for interacting with the local file system and executing commands, extending the capabilities of Claude Desktop and other Large Language Model (LLM) clients.
The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to LLMs. It enables AI models to connect to various data sources and tools, much like a USB-C port standardizes device connections.
The MCP server offers the following tools:
MCP follows a client-server architecture:
uv run mcp install
to install the MCP server.uv
executable.Example configuration:
{
"globalShortcut": "",
"mcpServers": {
"zbigniew-mcp": {
"command": "/Users/zbigniewtomanek/.local/bin/uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"marker-pdf",
"mcp",
"run",
"/Users/zbigniewtomanek/PycharmProjects/my-mcp-tools/server.py"
]
}
}
}
Execute shell commands safely:
execute_shell_command(["ls", "-la"])
execute_shell_command(["grep", "-r", "TODO", "./src"])
View file contents:
show_file("/path/to/file.txt")
show_file("/path/to/file.txt", num_lines=10)
Search for patterns in files:
search_in_file("/path/to/script.py", r"def\s+\w+\s*\(")
Make precise changes to files:
edit_file("config.json", replacements={"\"debug\": false": "\"debug\": true"})
Write or append content to files:
write_file("/path/to/file.txt", "New content")
write_file("/path/to/log.txt", "Log entry", mode="a")
Fetch web page contents:
fetch_page("https://example.com")
MCP supports multiple transport methods:
You can extend the MCP server by adding new tools with the @mcp.tool
decorator. Follow the pattern in server.py
to create new tools.
The MCP server provides access to your local system. Be mindful of the following:
This project is licensed under the Apache-2.0 license.