S
S3 (read-only)
verifiedfeatured
by RouterMCP · HTTP
S3 (read-only) by RouterMCP — connect via http to access its tools through your RouterMCP gateway.
#aws#s3#storage#hosted
TOOLS
4
available on this server
TRANSPORT
HTTP
SSE fallback
AUTH
Varies
depends on server or gateway configuration
REGION
Global
multi-region ready
STATUS
Active
accepting connections
Overview
ATTACHREADY
routermcp.jsonjson
{
"url": "https://connectors.routermcp.com/s3-readonly/v1/mcp",
"mcpServers": {
"s3-readonly": {
"url": "https://connectors.routermcp.com/s3-readonly/v1/mcp"
}
}
}
Tools (4)
s3_list_buckets
List S3 buckets accessible with the configured credentials
schema
{
"type": "object",
"properties": {}
}
s3_list_objects
List objects in an S3 bucket (read-only, paginated)
schema
{
"type": "object",
"required": [
"bucket"
],
"properties": {
"bucket": {
"type": "string",
"description": "Bucket name"
},
"prefix": {
"type": "string",
"description": "Optional key prefix filter"
},
"maxKeys": {
"type": "number",
"description": "Max keys per page (default 100)"
},
"continuationToken": {
"type": "string",
"description": "Pagination token from previous response"
}
}
}
s3_head_object
Get S3 object metadata without downloading the body
schema
{
"type": "object",
"required": [
"bucket",
"key"
],
"properties": {
"key": {
"type": "string"
},
"bucket": {
"type": "string"
}
}
}
s3_get_object
Get S3 object metadata and a small preview of content (max 4KB). Full body is not returned.
schema
{
"type": "object",
"required": [
"bucket",
"key"
],
"properties": {
"key": {
"type": "string"
},
"bucket": {
"type": "string"
},
"maxPreviewBytes": {
"type": "number",
"description": "Max bytes to preview (capped at 4096)"
}
}
}