Quick Start
Get your S3 Documentation MCP server running in just a few minutes.
With Docker (Recommended)
Section titled “With Docker (Recommended)”The easiest way to get started is using Docker:
# 1. Prerequisites# Install Ollama from https://ollama.aiollama pull nomic-embed-text
# 2. Configurecp env.example .env # Add your S3 credentials
# 3. Rundocker run -d \ --name s3-doc-mcp \ -p 3000:3000 \ --env-file .env \ -e OLLAMA_BASE_URL=http://host.docker.internal:11434 \ -v $(pwd)/data:/app/data \ yoanbernabeu/s3-doc-mcp:latestOr use Docker Compose:
docker compose up -dFrom Source
Section titled “From Source”If you prefer to run from source:
# 1. Prerequisites# Install Ollama from https://ollama.aiollama pull nomic-embed-text
# 2. Install & Runnpm installcp env.example .env # Configure your S3 credentialsnpm run build && npm start
# 3. For local developmentnpm run devYour MCP server is now running on http://localhost:3000
Next Steps
Section titled “Next Steps”Verify Installation
Section titled “Verify Installation”Check if your server is running:
curl http://localhost:3000/healthYou should receive a successful response indicating the server is operational.