s3-mcp-server

ander-castiblanco-stori/s3-mcp-server

3.2

If you are the rightful owner of s3-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The S3 YAML MCP Server is a Model Context Protocol server that integrates with AWS S3 to provide access to YAML files containing Swagger/OpenAPI documentation, facilitating seamless integration with VS Code and GitHub Copilot.

Tools
3
Resources
0
Prompts
0

S3 YAML MCP Server

A Model Context Protocol (MCP) server that connects to AWS S3 to provide access to YAML files containing Swagger/OpenAPI documentation. Designed for seamless integration with VS Code and GitHub Copilot.

šŸŽÆ What is MCP?

Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). It enables AI assistants to securely access data sources and tools.

✨ Features

  • šŸ”— S3 Integration: Connect to any S3-compatible storage service
  • šŸ“ YAML File Discovery: Automatically list and discover YAML/YML files
  • šŸ“– Content Access: Read and provide YAML content to AI assistants
  • šŸ” Advanced Search: Search for files and specific API endpoint details
  • šŸš€ VS Code Native: Built-in integration with VS Code and GitHub Copilot
  • šŸ”’ Secure Authentication: Uses AWS CLI credentials or IAM roles

šŸš€ Installation

Method 1: One-Line Install (Recommended)

curl -fsSL https://raw.githubusercontent.com/ander-castiblanco-stori/s3-mcp-server/main/install.sh | bash

This will:

  • Download the latest binary for your platform
  • Install it to /usr/local/bin
  • Set up VS Code configuration files

Method 2: Go Install

go install github.com/ander-castiblanco-stori/s3-mcp-server@latest

Method 3: Download Binary

Visit the releases page and download the binary for your platform.

Method 4: Docker

docker pull ghcr.io/ander-castiblanco-stori/s3-mcp-server:latest

🐳 Docker Usage

Quick Start with Docker

# Pull from GitHub Container Registry
docker pull ghcr.io/ander-castiblanco-stori/s3-mcp-server:latest

# Run with environment variables
docker run -it --rm \
  -e S3_BUCKET=your-bucket \
  -e S3_REGION=us-east-1 \
  -e AWS_ACCESS_KEY_ID=your-key \
  -e AWS_SECRET_ACCESS_KEY=your-secret \
  ghcr.io/ander-castiblanco-stori/s3-mcp-server:latest

Using with Docker Compose

# In your project's docker-compose.yml
version: "3.8"

services:
  s3-mcp-server:
    image: ghcr.io/ander-castiblanco-stori/s3-mcp-server:latest
    environment:
      - S3_BUCKET=your-api-docs-bucket
      - S3_REGION=us-east-1
    volumes:
      - ~/.aws:/home/mcp/.aws:ro
    stdin_open: true
    tty: true

VS Code Integration with Docker

// .vscode/mcp.json
{
  "mcpServers": {
    "s3YamlDocs": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "S3_BUCKET=${input:s3-bucket}",
        "-e",
        "S3_REGION=${input:aws-region}",
        "-v",
        "${env:HOME}/.aws:/home/mcp/.aws:ro",
        "ghcr.io/ander-castiblanco-stori/s3-mcp-server:latest"
      ]
    }
  }
}

Building Docker Images Locally

# Using Makefile
make docker-build          # Build local image
make docker-test           # Test the image
make docker-push           # Build and push to GHCR

# Using script
./docker-build.sh          # Interactive build and push

# Manual commands
docker build --build-arg VERSION=v1.0.0 -t s3-mcp-server:v1.0.0 .
docker run --rm s3-mcp-server:v1.0.0 ./s3-mcp-server --version

šŸš€ Quick Start

Prerequisites

  • AWS credentials configured (via AWS CLI, IAM roles, or environment variables)
  • S3 bucket containing YAML files
  • VS Code with GitHub Copilot extension

Setup

  1. Install the server (choose one method above)

  2. Configure environment:

# In your project directory, create configuration
cat > .env << 'EOF'
S3_BUCKET=your-api-docs-bucket
S3_REGION=us-east-1
EOF
  1. Set up VS Code (if not done by installer):
# Create VS Code MCP configuration
mkdir -p .vscode
cat > .vscode/mcp.json << 'EOF'
{
  "mcpServers": {
    "s3YamlDocs": {
      "command": "s3-mcp-server",
      "args": [],
      "env": {
        "S3_BUCKET": "your-bucket-name",
        "S3_REGION": "us-east-1"
      }
    }
  }
}
EOF
  1. Test the connection:
./test-vscode-integration.sh
  1. Open in VS Code:
code .
  1. Start using with GitHub Copilot:
    • Open GitHub Copilot Chat (Cmd+Shift+I on macOS)
    • Type: @s3YamlDocs list all YAML files in my bucket

šŸ› ļø MCP Capabilities

Resources

  • Lists all YAML files in the S3 bucket as MCP resources
  • Each file is exposed with metadata (size, modification date)
  • Files are accessible via S3 URIs: s3://bucket-name/path/to/file.yaml

Tools

  • search_yaml_files: Search for YAML files by name pattern
  • list_yaml_files: List all YAML files with optional prefix filtering
  • get_endpoint_details: Get detailed information about specific API endpoints including request/response schemas

šŸ’” Usage Examples with GitHub Copilot

Generate API Client Code

@s3YamlDocs I need to create a TypeScript client for the user management API.
Can you find the user API specification and generate a complete client with all methods?

Find Specific Endpoint Details

@s3YamlDocs Use get_endpoint_details to find information about the /v1/cards/{card_id}/pan endpoint

Validate Implementation

@s3YamlDocs Compare my Express.js routes in src/routes/users.js with the user API
specification to ensure I'm following the contract correctly.

Generate Test Cases

@s3YamlDocs Based on the payment API specification, generate comprehensive
Jest test cases that cover all endpoints and error scenarios.

Search and Analysis

@s3YamlDocs Search for all authentication-related endpoints across all my APIs
@s3YamlDocs Find all endpoints that return blocked_reason in the response

āš™ļø Configuration

Environment Variables

Create a .env file based on .env.example:

# Required
S3_BUCKET=your-api-docs-bucket

# Optional (defaults shown)
S3_REGION=us-east-1
AWS_ACCESS_KEY_ID=your-access-key     # Optional if using IAM/AWS CLI
AWS_SECRET_ACCESS_KEY=your-secret-key # Optional if using IAM/AWS CLI
S3_ENDPOINT=                          # For S3-compatible services
LOG_LEVEL=info

AWS Authentication

The server supports multiple authentication methods:

  1. AWS CLI credentials (recommended): aws configure
  2. IAM roles (for EC2/Lambda deployments)
  3. Environment variables (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY)

S3 Permissions

Your AWS credentials need these S3 permissions:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "s3:GetObject",
        "s3:ListBucket",
        "s3:HeadBucket",
        "s3:HeadObject"
      ],
      "Resource": [
        "arn:aws:s3:::your-bucket-name",
        "arn:aws:s3:::your-bucket-name/*"
      ]
    }
  ]
}

Recommended S3 File Organization

your-s3-bucket/
ā”œā”€ā”€ apis/
│   ā”œā”€ā”€ user-service/
│   │   ā”œā”€ā”€ v1/openapi.yaml
│   │   └── v2/swagger.yaml
│   ā”œā”€ā”€ payment-service/
│   │   └── api-spec.yml
│   └── notification-service/
│       └── swagger.yaml
└── legacy/
    └── old-api.yaml

šŸ—ļø Development

Project Structure

s3-mcp-server/
ā”œā”€ā”€ main.go                    # Entry point
ā”œā”€ā”€ internal/
│   ā”œā”€ā”€ config/               # Configuration management
│   ā”œā”€ā”€ s3/                   # S3 client and operations
│   └── server/               # MCP server implementation
ā”œā”€ā”€ pkg/
│   └── mcp/                  # MCP protocol types and utilities
ā”œā”€ā”€ .vscode/
│   └── mcp.json              # VS Code MCP configuration
ā”œā”€ā”€ .env.example              # Environment configuration template
└── README.md

Building and Testing

# Using Makefile (recommended)
make build          # Build binary
make test           # Run tests
make test-vscode    # Test VS Code integration
make install        # Install to /usr/local/bin

# Manual build
go build -o s3-mcp-server

# Test scripts
./test-vscode-integration.sh
./test-new-tool.sh
./test.sh

šŸ“¦ Distribution & Publishing

This project supports multiple distribution methods:

šŸ·ļø Creating Releases

  1. Tag a version:
git tag v1.0.0
git push origin v1.0.0
  1. GitHub Actions automatically:
    • Builds binaries for all platforms (Linux, macOS, Windows)
    • Creates a GitHub release
    • Uploads platform-specific binaries

🐳 Docker Distribution

# Build Docker image
make docker-build

# Run with Docker
docker run --rm -e S3_BUCKET=your-bucket s3-mcp-server:latest

šŸ“‹ Installation Methods Summary

MethodCommandUse Case
One-line installcurl -fsSL https://raw.githubusercontent.com/ander-castiblanco-stori/s3-mcp-server/main/install.sh | bashProduction use across projects
Go installgo install github.com/ander-castiblanco-stori/s3-mcp-server@latestGo developers
Binary downloadDownload from releasesManual installation
Dockerdocker pull ghcr.io/ander-castiblanco-stori/s3-mcp-server:latestContainer environments
Clone & buildgit clone && make buildDevelopment

šŸ”„ Using Across Multiple Projects

Once installed globally, you can use the S3 MCP server in any project:

  1. Create VS Code config in any project:
mkdir -p .vscode
cat > .vscode/mcp.json << 'EOF'
{
  "mcpServers": {
    "s3YamlDocs": {
      "command": "s3-mcp-server",
      "args": [],
      "env": {
        "S3_BUCKET": "your-api-docs-bucket",
        "S3_REGION": "us-east-1"
      }
    }
  }
}
EOF
  1. Open VS Code and use GitHub Copilot:
@s3YamlDocs list all YAML files
@s3YamlDocs find endpoints for user authentication

šŸ”§ Troubleshooting

Common Issues

āŒ S3 Connection Failed

  • Verify AWS credentials: aws sts get-caller-identity
  • Check bucket permissions and region
  • Ensure bucket exists: aws s3 ls s3://your-bucket-name

āŒ No Files Found

  • Verify YAML files exist with .yaml or .yml extensions
  • Check S3 bucket contents: aws s3 ls s3://your-bucket-name --recursive

āŒ VS Code Integration Issues

  • Ensure VS Code is updated to latest version
  • Check GitHub Copilot extension is active
  • Verify .vscode/mcp.json configuration
  • Check VS Code Output → "GitHub Copilot Chat" for errors

āŒ Permission Denied

  • Review IAM policies match required S3 permissions
  • Check bucket policy allows access
  • Verify region configuration matches bucket region

Debug Mode

Enable debug logging:

LOG_LEVEL=debug ./s3-mcp-server

šŸ“š Learn More

šŸ“„ License

MIT License - see LICENSE file for details.