Getting Started
Installation
Install @nogoo9/mcp-server-cloud-fs globally or use it on-demand with npx/bunx:
bash
# On-demand (recommended)
npx @nogoo9/mcp-server-cloud-fs s3 s3://my-bucket
# Global install
npm install -g @nogoo9/mcp-server-cloud-fs
cloud-fs-mcp s3 s3://my-bucketQuick Start
Local (STDIO — default)
The simplest way to get started. The server communicates over stdin/stdout:
bash
npx @nogoo9/mcp-server-cloud-fs s3 s3://my-bucketRemote (HTTP)
Deploy as a remote server with Streamable HTTP:
bash
# Bun (zero Express dependency)
bunx @nogoo9/mcp-server-cloud-fs s3 s3://my-bucket --transport http --port 3000
# Node.js (requires express peer dep)
npx @nogoo9/mcp-server-cloud-fs s3 s3://my-bucket --transport http --port 3000Remote (WebSocket — Bun only)
For low-latency bidirectional communication:
bash
bunx @nogoo9/mcp-server-cloud-fs s3 s3://my-bucket --transport ws --port 3000Demo (no cloud credentials needed)
Try the in-memory provider with pre-seeded sample files:
bash
bunx @nogoo9/mcp-server-cloud-fs memory mem://demo --enable-shell --seed-demoMCP Client Configuration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
json
{
"mcpServers": {
"cloud-fs": {
"command": "npx",
"args": ["-y", "@nogoo9/mcp-server-cloud-fs", "s3", "s3://my-bucket"]
}
}
}Claude Code
Add .mcp.json to your project root:
json
{
"mcpServers": {
"cloud-fs": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@nogoo9/mcp-server-cloud-fs", "s3", "s3://my-bucket"]
}
}
}Remote HTTP Client
json
{
"mcpServers": {
"cloud-fs": {
"type": "streamable-http",
"url": "https://cloud-fs.example.com/mcp"
}
}
}MCP Inspector
Test and debug with the MCP Inspector:
bash
# Quick demo (no credentials needed)
bun run inspect:memory
# Custom configuration
bun run inspect -- s3 s3://my-bucket --region us-east-1 --enable-shellWhat's Next?
- Transports — learn about STDIO, HTTP, and WebSocket transport modes
- Authentication — configure OAuth 2.1 for production deployments
- Provider Setup — detailed setup for each cloud provider
- Tool Reference — complete list of all 20+ tools
