s3-mcp-server
⚙️ A Model Context Protocol (MCP) server for accessing Amazon S3 buckets. This server provides seamless integration with S3 storage through MCP, allowing efficient handling of large files including PDFs through streaming capabilities.
Documentation
S3 MCP Server
A Model Context Protocol (MCP) server for accessing Amazon S3 buckets. This server provides seamless integration with S3 storage through MCP, allowing efficient handling of large files including PDFs through streaming capabilities.
Features
- S3 bucket object listing with prefix filtering
- Efficient large file handling through streaming
- Secure AWS credentials management
- TypeScript support
- CLI interface with customizable options
Installation
npx -y @geunoh/s3-mcp-serverUsage
Command Line Options
npx -y @geunoh/s3-mcp-server [options]Options:
- `--port, -p`: Server port (default: 3000)
- `--region, -r`: AWS region (default: ap-northeast-2)
- `--bucket, -b`: S3 bucket name (default: my-dancing-bucket)
- `--content-type, -t`: Input file content type for uploads/downloads (default: application/octet-stream)
Environment Variables
Required:
export AWS_ACCESS_KEY_ID="your_access_key"
export AWS_SECRET_ACCESS_KEY="your_secret_key"Optional:
export AWS_REGION="ap-northeast-2"
export S3_BUCKET_NAME="my-bucket-name"
export CONTENT_TYPE="application/octet-stream" # Optional: default MIME type for uploads/downloadsMCP Integration
Add to your mcp.json:
{
"mcpServers": {
"s3-mcp-server": {
"command": "npx",
"args": [
"-y",
"@geunoh/s3-mcp-server",
"--region",
"us-east-1",
"--bucket",
"my-test-bucket",
"--content-type",
"text/plain"
],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY": "YOUR_AWS_SECRET_ACCESS_KEY"
}
}
}
}Or like this way:
{
"mcpServers": {
"s3-mcp-server": {
"command": "npx",
"args": ["-y", "@geunoh/s3-mcp-server"],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY": "YOUR_AWS_SECRET_ACCESS_KEY",
// optional
"AWS_REGION": "us-east-1",
"S3_BUCKET_NAME": "my-test-bucket"
}
}
}
}Available MCP Functions
listObjects
Lists objects in the S3 bucket.
Parameters:
- `prefix` (optional): Filter objects by prefix
getObject
Retrieves an object from the S3 bucket. Optimized for large files through streaming.
Parameters:
- `key`: The key of the object to retrieve
Returns:
- `stream`: ReadableStream of the object content
- `contentType`: MIME type of the object
- `contentLength`: Size of the object in bytes
- `lastModified`: Last modification timestamp
- `text`: Text buffer of raw pdf ByteArray
AWS IAM Permissions
Minimum required permissions (see s3-policy.json):
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:ListBucket", "s3:GetObject"],
"Resource": "arn:aws:s3:::my-bucket-name"
}
]
}Development
1. Clone the repository:
git clone https://github.com/Geun-Oh/s3-mcp-server.git
cd s3-mcp-server2. Install dependencies:
npm install3. Build the project:
npm run build4. Run locally:
node dist/cli.jsProject Structure
.
├── src/ # TypeScript source files
├── dist/ # Compiled JavaScript files and runtime dependencies
├── tsconfig.json # TypeScript configuration
└── package.json # Project configuration and dependenciesDeployment
1. Create a new version tag:
npm version patch2. Push to npm registry:
npm publish --access publicThe GitHub Actions workflow will automatically publish the package when a new version tag is pushed.
License
MIT
Contributing
Issues and pull requests are welcome. Please ensure that your changes maintain the existing code style and include appropriate tests.
Frequently asked questions
What is s3-mcp-server?
s3-mcp-server is ⚙️ A Model Context Protocol (MCP) server for accessing Amazon S3 buckets. This server provides seamless integration with S3 storage through MCP, allowing efficient handling of large files including PDFs through streaming capabilities.
How do I install s3-mcp-server?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is s3-mcp-server open source?
Yes — it is hosted on GitHub at https://github.com/Geun-Oh/s3-mcp-server and has 3 stars.
Related MCP tools
🍒 Cherry Studio is a desktop client that supports for multiple LLM providers. Built for the Model Context Protocol to enhance AI capabilities.
Enhanced ChatGPT Clone: Features Agents, MCP, DeepSeek, Anthropic, AWS, OpenAI, Responses API, Azure, Groq, o1, GPT-5, Mistral, OpenRouter, Vertex AI, Gemini...
FastGPT is a knowledge-based platform built on the LLMs, offers a comprehensive suite of out-of-the-box capabilities such as data processing, RAG retrieval, ...
Composio equips your AI agents & LLMs with 100+ high-quality integrations via function calling for the Model Context Protocol. Enhance AI assistants with powerf
Playwright MCP server TypeScript-based implementation. Trusted by 22000+ developers. Trusted by 22000+ developers. Trusted by 22000+ developers.
📦 Repomix is a powerful tool that packs your entire repository into a single, AI-friendly file. Perfect for when you need to feed your codebase to Large Lan...
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP