AgentHubAgentHub

s3

MCP ServerMCP Registry官方收录

com.pulsemcp/s3 · v0.0.4

MCP server for AWS S3 with fine-grained tool control and S3-compatible endpoint support.

概览

s3 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "s3": {
      "command": "npx",
      "args": [
        "-y",
        "s3-aws-mcp-server"
      ],
      "env": {
        "AWS_ACCESS_KEY_ID": "<AWS_ACCESS_KEY_ID>",
        "AWS_SECRET_ACCESS_KEY": "<AWS_SECRET_ACCESS_KEY>"
      }
    }
  }
}

环境变量

AWS_ACCESS_KEY_ID必填secret

AWS access key ID for authentication.

AWS_SECRET_ACCESS_KEY必填secret

AWS secret access key for authentication.

AWS_REGION可选

AWS region for S3 operations.

AWS_ENDPOINT_URL可选

Custom S3 endpoint URL for MinIO or S3-compatible services.

S3_FORCE_PATH_STYLE可选

Use path-style addressing instead of virtual-hosted-style.

S3_BUCKET可选

Constrain all operations to a single bucket.

S3_ENABLED_TOOLGROUPS可选

Comma-separated tool groups: readonly or readwrite.

S3_ENABLED_TOOLS可选

Whitelist specific tools by name.

S3_DISABLED_TOOLS可选

Blacklist specific tools by name.

SKIP_HEALTH_CHECKS可选

Skip AWS credential validation health checks at startup.

相关资源

统一 Manifest

{
  "id": "com.pulsemcp/s3",
  "type": "mcp-server",
  "version": "0.0.4",
  "displayName": "s3",
  "description": "MCP server for AWS S3 with fine-grained tool control and S3-compatible endpoint support.",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "experimental/s3"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "s3-aws-mcp-server",
        "version": "0.0.4",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AWS_ACCESS_KEY_ID",
            "description": "AWS access key ID for authentication.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AWS_SECRET_ACCESS_KEY",
            "description": "AWS secret access key for authentication.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AWS_REGION",
            "description": "AWS region for S3 operations."
          },
          {
            "name": "AWS_ENDPOINT_URL",
            "description": "Custom S3 endpoint URL for MinIO or S3-compatible services."
          },
          {
            "name": "S3_FORCE_PATH_STYLE",
            "description": "Use path-style addressing instead of virtual-hosted-style."
          },
          {
            "name": "S3_BUCKET",
            "description": "Constrain all operations to a single bucket."
          },
          {
            "name": "S3_ENABLED_TOOLGROUPS",
            "description": "Comma-separated tool groups: readonly or readwrite."
          },
          {
            "name": "S3_ENABLED_TOOLS",
            "description": "Whitelist specific tools by name."
          },
          {
            "name": "S3_DISABLED_TOOLS",
            "description": "Blacklist specific tools by name."
          },
          {
            "name": "SKIP_HEALTH_CHECKS",
            "description": "Skip AWS credential validation health checks at startup."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.pulsemcp/s3",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.pulsemcp%2Fs3/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
s3 — MCP Server 安装与配置 · AgentHub