A server for performing filesystem operations such as reading/writing files, managing directories, and searching.
A Model Context Protocol (MCP) server that provides secure filesystem access to AI assistants in Code Maestro Desktop.
This MCP server allows AI assistants to:
All operations are restricted to the directories you explicitly allow.
We forked the original @modelcontextprotocol/server-filesystem
to make it more efficient for AI assistants. The original package could return extremely large outputs that waste tokens and overwhelm language models.
Our improvements:
node_modules
, .git
, and similar directoriesThese changes ensure your AI assistant gets the information it needs without drowning in unnecessary data.
1. Open CM Desktop and click connectors
2. Click "Add" and paste the following JSON:
{
"mcpServers": {
"Code Maestro - Filesystem MCP": {
"transport": "stdio",
"enabled": true,
"command": "npx",
"args": [
"github:codemaestroai/filesystem-mcp",
"<YOUR_PROJECT_PATH>"
],
"env": {},
"url": null,
"headers": null
}
}
}
3. Replace <YOUR_PROJECT_PATH>
with the actual path to your project directory
Example paths:
"C:\\Users\\YourName\\Projects\\my-project"
"/home/username/projects/my-project"
You can specify multiple directories:
"args": [
"github:codemaestroai/filesystem-mcp",
"/path/to/project1",
"/path/to/project2"
]
Note: This is a temporary solution. We're working on native file operation support in CM Desktop.
Visualize directory structures with real-time updates, configurable depth, and smart exclusions for efficient project navigation.
Parses various file formats using the 302.AI API, requiring a 302AI_API_KEY.
Secure file operations with configurable access controls
Fast Windows file search using Everything SDK
Securely browse and read files within an Android project, with built-in validation and access controls for sensitive directories.
Convert files between various formats, including images, documents, audio, video, and more.
Batch convert PNG, JPG, and JPEG images to WebP format with options for quality, lossless mode, and multi-threaded processing.
A secure server for filesystem operations with controlled access to specified directories.