Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for uploading, listing, and retrieving files on S3-compatible storage (AWS S3, DigitalOcean Spaces) with public/private access and temporary URLs.

README.md

<div align="center">

SaveForMeDearAI

![npm version](https://badge.fury.io/js/saveformedearai) ![npm downloads](https://www.npmjs.com/package/saveformedearai) ![License: MIT](https://opensource.org/licenses/MIT) ![GitHub stars](https://github.com/bramato/saveForMeDearAi/stargazers) ![TypeScript](https://www.typescriptlang.org/) ![S3](https://aws.amazon.com/s3/)

A Model Context Protocol (MCP) server for managing files on S3 storage, supporting AWS S3 and DigitalOcean Spaces.

</div>

Features

  • 🚀 Upload public and private files with metadata
  • 📋 List files with descriptions and information
  • 🔗 Immediate URL access - URLs returned directly in upload response
  • 🌍 Global and local configuration for projects
  • Multi-provider support (AWS S3, DigitalOcean Spaces, S3-compatible)
  • 🎯 Claude Code integration via MCP

Installation

Global Installation

npm install -g saveformedearai

Installation from Source

git clone https://github.com/bramato/saveForMeDearAi.git
cd saveForMeDearAi
npm install
npm run build
npm install -g .

Configuration

Quick Setup (2 steps)

  1. Install and configure:
npm install -g saveformedearai
saveformedearai setup
  1. Add to Claude MCP config:
{
  "mcpServers": {
    "saveformedearai": {
      "command": "saveformedearai"
    }
  }
}

Available Commands

# Configure S3 drive (global)
saveformedearai setup

# Initialize local project
saveformedearai init

# Start MCP server (automatic when called by Claude)
saveformedearai

Configuration Structure

Global Configuration

Saved in ~/.saveformedearai/config.json:

{
  "defaultDrive": "my-aws-drive",
  "drives": {
    "my-aws-drive": {
      "endpoint": "https://s3.amazonaws.com",
      "region": "us-east-1",
      "accessKeyId": "YOUR_ACCESS_KEY",
      "secretAccessKey": "YOUR_SECRET_KEY",
      "bucketName": "my-bucket"
    }
  }
}

Local Configuration

Saved in .claude/saveformedearai.json:

{
  "driveName": "my-project-drive",
  "projectDirectory": "my-project",
  "s3Config": {
    "endpoint": "https://nyc3.digitaloceanspaces.com",
    "region": "nyc3",
    "accessKeyId": "YOUR_DO_KEY",
    "secretAccessKey": "YOUR_DO_SECRET",
    "bucketName": "my-space"
  }
}

Available MCP Tools

1. save_public_file

Save a file as public and return the permanent URL.

{
  "filePath": "/path/to/file.jpg",
  "filename": "optional-custom-name.jpg", // optional
  "description": "File description" // optional
}

Response: ``json { "success": true, "url": "https://bucket.endpoint.com/file.jpg", "key": "file.jpg", "urlType": "permanent", "isPublic": true, "message": "File uploaded successfully as public file. URL: https://bucket.endpoint.com/file.jpg", "driveName": "my-drive" } ``

2. save_private_file

Save a file as private.

{
  "filePath": "/path/to/private-file.pdf",
  "filename": "document.pdf",
  "description": "Private document"
}

Response: ``json { "success": true, "key": "document.pdf", "url": "https://presigned-url...", "temporaryUrl": "https://presigned-url...", "urlType": "temporary", "expiresIn": 3600, "expirationDate": "2024-01-15T11:30:00Z", "message": "File uploaded successfully as private file. Temporary URL provided (expires in 1 hour).", "driveName": "my-drive" } ``

3. list_files

List all files with metadata.

{
  "prefix": "images/" // optional, filter by prefix
}

Response: ``json { "success": true, "files": [ { "filename": "image.jpg", "description": "Sample photo", "uploadDate": "2024-01-15T10:30:00Z", "isPublic": true, "size": 1024000, "contentType": "image/jpeg", "sizeFormatted": "1.02 MB" } ], "count": 1, "driveName": "my-drive" } ``

4. get_file_url

Get URL for a file (permanent for public, temporary for private).

{
  "filename": "document.pdf",
  "expiresIn": 3600 // optional, seconds (max 7 days)
}

Response for public file: ``json { "success": true, "url": "https://bucket.endpoint.com/document.pdf", "urlType": "permanent", "isPublic": true, "filename": "document.pdf" } ``

Response for private file: ``json { "success": true, "url": "https://presigned-url...", "urlType": "temporary", "isPublic": false, "expiresIn": 3600, "expirationDate": "2024-01-15T11:30:00Z" } ``

Provider Support

AWS S3

Endpoint: https://s3.amazonaws.com
Force Path Style: false

DigitalOcean Spaces

Endpoint: https://[region].digitaloceanspaces.com
Force Path Style: false

S3-Compatible (Minio, etc.)

Endpoint: https://your-endpoint.com
Force Path Style: true (typically)

Development

# Clone repository
git clone https://github.com/bramato/saveForMeDearAi.git
cd saveForMeDearAi

# Install dependencies
npm install

# Build
npm run build

# Development with watch
npm run dev

# Test locally
npm start

Troubleshooting

Error "No configuration found"

Run saveformedearai setup to configure an S3 drive.

S3 connection error

Verify:

  • Correct credentials
  • Correct endpoint for provider
  • Bucket exists and is accessible
  • Adequate permissions (read/write for bucket)

File not found

Use list_files to verify file names in the bucket.

License

MIT

Contributing

Contributions are welcome! Please open an issue or pull request.

🎵 Support the Developer

Love coding with chill vibes? Support this project by listening to my developer album:

"Code Chill: Loops of Relaxation" 🎧

Perfect background music for your coding sessions

<div align="center">

![Listen on Apple Music](https://music.apple.com/it/album/code-chill-loops-of-relaxation/1815061487) ![Listen on Spotify](http://open.spotify.com/intl-it/album/0hBmSuyrMWpdazYTMCV0fp?go=1&nd=1&dlsi=ce8dfc8f237340e7) ![Listen on YouTube Music](https://music.youtube.com/playlist?list=OLAK5uy_lHyFL4eHr1FAikCrvsQrPYkU3AAX4DM6k)

</div>

Every stream helps support the development of free tools like this one! 🙏

</div>

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.