CloudSee Drive MCP Server
Enables natural language management of files on CloudSee Drive (Amazon S3) including browsing, searching, uploading, downloading, sharing, and organizing, with confirmation for destructive actions.
README
CloudSee Drive MCP server
An open-source Model Context Protocol (MCP) server for CloudSee Drive β connect your CloudSee account (a browser interface for Amazon S3) to Claude Desktop and any MCP-compatible client, and manage your files in natural language.
Browse, search, download, share, upload, organize, and tag your CloudSee Drive files from your AI assistant β with explicit confirmation before anything destructive happens.
π New here? The Installation, Commands & Testing Guide walks through install, configuration, every tool with examples, and how to test against a live API.
Quickstart (β5 minutes)
1. Get an API key
In the CloudSee Drive dashboard, create a public-API key. You'll receive a key id
(looks like AKIAβ¦) and a secret. Copy both β the secret is shown only once.
2. Add the server to Claude Desktop
Open Claude Desktop β Settings β Developer β Edit Config, and add a cloudsee-drive
entry under mcpServers (no install needed β npx fetches it on demand):
{
"mcpServers": {
"cloudsee-drive": {
"command": "npx",
"args": ["-y", "@webapper/cloudsee-drive-mcp"],
"env": {
"CLOUDSEE_API_KEY_ID": "<your key id>",
"CLOUDSEE_API_KEY_SECRET": "<your secret>",
"CLOUDSEE_API_BASE_URL": "https://drive-api.cloudsee.cloud"
}
}
}
}
3. Restart Claude Desktop and try it
"List my CloudSee buckets, then show the most recent files."
That's it. The server runs locally on your machine; your API key never leaves it.
Installation
npx (above) always runs the latest version. To install the cloudsee-drive-mcp binary
globally instead:
npm install -g @webapper/cloudsee-drive-mcp
Requires Node.js β₯ 20. No native dependencies β works on macOS, Linux, and Windows.
Configuration
All configuration is via environment variables (set them in the Claude Desktop env block,
or a local .env for development β see .env.example).
| Variable | Required | Default | Description |
|---|---|---|---|
CLOUDSEE_API_KEY_ID |
β | β | Your CloudSee Drive API key id. |
CLOUDSEE_API_KEY_SECRET |
β | β | The matching API key secret. Never commit this. |
CLOUDSEE_API_BASE_URL |
β | https://drive-api.cloudsee.cloud |
API base URL. UAT: https://drive-api-uat.cloudsee.cloud. |
CLOUDSEE_DEFAULT_BUCKET |
β | β | Default drive (S3 bucket) for tool calls that omit bucketName. Find the name in the CloudSee dashboard. |
CLOUDSEE_LOG_LEVEL |
β | info |
error | warn | info | debug. At debug, every API request + response is logged to stderr (secret redacted) for auditing. |
CLOUDSEE_TIMEOUT_MS |
β | 30000 |
Per-request timeout in milliseconds. |
Tools
Most tools operate on one drive (an S3 bucket): pass bucketName, or set
CLOUDSEE_DEFAULT_BUCKET once and omit it. recent_files and list_buckets don't need a drive.
| Tool | Description | Access |
|---|---|---|
list_buckets |
List accessible buckets | read |
list_files |
List all files in a drive (recursive) | read |
browse_folder |
List a folder's contents (indexed view) | read |
search_files |
Find files/folders by name keyword | read |
recent_files |
List recently used files | read |
get_file_metadata |
Get a file's metadata | read |
get_file_tags |
Get a file's S3 tags | read |
download_file |
Get a temporary pre-signed download URL | download |
share_link |
Create a shareable, time-limited link | download |
upload_file |
Upload a local file (single or multipart) | write |
create_folder |
Create a folder | write |
rename_file |
Rename a file/folder | write Β· confirm |
move_file |
Move (or copy) a file/folder | write Β· confirm (move) |
duplicate_file |
Duplicate a file | write |
delete_files |
Permanently delete objects | delete Β· confirm |
update_metadata |
Update a file's metadata | write Β· confirm |
restore_archived_file |
Un-archive a Glacier object | write Β· confirm |
Destructive operations require confirmation
Tools marked confirm (delete, rename, move, update-metadata, restore) use two-step
confirmation: the first call returns a preview and makes no changes; you must call again
with confirm: true to proceed. This is a client-side safety prompt β the CloudSee API
authorizes every operation server-side; confirmation is not the security boundary.
Security
- Your API key id + secret are read from the environment and held only in this local process. The server never logs the secret, never returns it in tool output, and never writes it to a file. All diagnostics go to stderr (stdout is the MCP transport).
- File downloads/shares return short-lived pre-signed URLs, never AWS credentials.
- Report vulnerabilities per
SECURITY.md. Never paste a real key/secret into an issue.
Status & known limitations
This wraps CloudSee Drive's public API (the /v1/* gateway).
- Almost every tool needs a drive (
bucketName, orCLOUDSEE_DEFAULT_BUCKET). Without one, drive-scoped tools return a clear "specify a drive" message.list_bucketsreturns the drives your key can access β use it to discover drive names. browse_folder/search_filesuse the search-indexed view and can return empty for un-indexed content β uselist_filesfor a complete, reliable listing of a drive.- Write/delete tools require an API key whose scopes include
drive:write/drive:delete. Admin-created keys carry these scopes; keys created under a User role are read/download-only, and the gateway denies out-of-scope calls with a clearinsufficient_scopemessage. rename_file,move_file(and copy) anddelete_filesare queued operations: the tool returns a queueRequestIdand the operation completes in the background, typically within 1β2 minutes β verify by listing.upload_filehandles files of any size: a single pre-signed PUT up to 8 MiB, and multipart (8 MiB parts) above that β chosen automatically.
Development
npm install
npm test # vitest: unit + toolβcontract drift tests
npm run typecheck # tsc --noEmit
npm run lint # eslint
npm run build # tsup β dist/ (ESM, with bin shebang)
npm run sync:contract # regenerate contract/registry.snapshot.json from the API seed
node scripts/smoke.mjs # build first; spawns the server and lists tools over MCP
The contract-drift test (test/contract/drift.test.ts) fails the build if any tool drifts
from the committed API contract snapshot β so tool schemas can't silently diverge from the
real /v1/* surface.
License
MIT Β© Webapper
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.