Filesystem Server
Browse and access local filesystem content for AI to work with
Server Configuration
Details about this MCP server configuration
Server ID:
filesystem
Type:
stdio
Command:
Command
npx -y @modelcontextprotocol/server-filesystem /Users/zz/Desktop
Using This Server
How to use this MCP server in your application
Configuration Example
Add this server to your cue.config.json:
Command
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/zz/Desktop"
]
}
}
}
Quick Start
Get started with this MCP server
To start using this MCP server, follow these steps:
- Ensure you have all prerequisites installed
- Add the server configuration to your cue.config.json
- Start Cue with the configuration file
- The MCP server will be automatically started when needed
Run Cue with this configuration:
Command
cue -r -c cue.config.json