client
Model Context Protocol client for NetSendo email marketing platform - connect AI assistants to your NetSendo instance
Installation
npx @netsendo/mcp-clientAsk AI about client
Powered by Claude Β· Grounded in docs
I know everything about client. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation

NetSendo
Professional Email Marketing & Automation Platform
π Documentation β’ π Courses β’ π¬ Forum β’ π Report Bug
πΊπΈ English | π΅π± Polski | π©πͺ Deutsch | πͺπΈ EspaΓ±ol
π About NetSendo
NetSendo is a modern email marketing and automation platform that enables:
- π§ Email Marketing - Create and send email campaigns with advanced MJML editor
- π₯ Webinars & Auto-Webinars - Host live sessions or schedule automated evergreen webinars with simulated chat
- π₯ Live Visitors - Real-time visitor tracking and analytics using WebSockets
- ποΈ E-commerce & Funnels - Sell digital products via Stripe, Polar, & Shopify with built-in sales funnels
- π€ AI Suite - Campaign Auditor, Advisor, and Smart Content Generation (OpenAI, Claude, Gemini)
- π MCP Server - Model Context Protocol integration for AI assistants (Claude, Cursor, VS Code)
- π± SMS Marketing - Send SMS messages to your subscribers
- π Automations - Build complex scenarios and workflows
- π¦ Integrations - Native support for WordPress, WooCommerce, n8n, and more
- π Analytics - Detailed open, click, and conversion statistics
- π¨ Templates - Drag & drop email template builder
- π₯ CRM - Manage subscribers, groups, and tags
- π NMI - Professional mail infrastructure with dedicated IPs, IP warming, DKIM, and blacklist monitoring
πΈ Dashboard Preview

Modern, intuitive dashboard with real-time analytics and campaign management
π Requirements
- Docker Desktop (recommended) or:
- PHP 8.5+
- MySQL 8.0+
- Redis
- Node.js 25+
- Composer
- PHP GD Extension (optional, for automatic color extraction from images)
[!TIP] The PHP GD extension enables automatic color palette extraction from uploaded images in the Media Library. If GD is not installed, image uploads will still work, but color extraction will be skipped.
π³ Installation (Docker)
[!IMPORTANT] > Required Configuration Before Starting Docker
Before running Docker, you MUST configure the following environment variables in
src/.env.docker:1. APP_KEY (Required - Docker will NOT build without this!):
# Find the line: APP_KEY= # Replace with (IMPORTANT: must start with base64:): APP_KEY=base64:YOUR_32_BYTE_KEY_HEREGenerate a key using:
openssl rand -base64 322. DB_PASSWORD (Required - change from default):
DB_PASSWORD=your_secure_password3. AI API Keys (Optional - for AI features):
OPENAI_API_KEY=sk-... ANTHROPIC_API_KEY=sk-ant-... GOOGLE_AI_API_KEY=...
π Production Deployment
Option 1: Quick Install Script (Recommended)
curl -fsSL https://raw.githubusercontent.com/NetSendo/NetSendo/main/install.sh | bash
To install a specific version:
VERSION=1.0.0 curl -fsSL https://raw.githubusercontent.com/NetSendo/NetSendo/main/install.sh | bash
Option 2: Manual Production Deployment
# Clone repository
git clone https://github.com/NetSendo/NetSendo.git
cd NetSendo
# Create .env file from example
cp .env.example .env
# Edit .env with your production settings
# Start production stack (uses pre-built images)
docker compose up -d
# Or specify a version
NETSENDO_VERSION=1.0.0 docker compose up -d
| Service | URL | Description |
|---|---|---|
| NetSendo | http://localhost:5029 | Main dashboard |
| Mailpit | http://localhost:5031 | Test email inbox |
| MySQL | localhost:5030 | Database |
| Reverb | localhost:8085 | WebSocket Server |
[!TIP] All ports are bound to
127.0.0.1for security. Use a reverse proxy (nginx, Caddy) for public access.
π οΈ Development Setup
git clone https://github.com/NetSendo/NetSendo.git
cd NetSendo
# Start development stack (builds from source)
docker compose -f docker-compose.dev.yml up -d --build
On first run, the container will automatically:
- β Install Composer and NPM dependencies
- β Generate application key
- β Run database migrations
- β Build frontend assets
| Service | URL | Description |
|---|---|---|
| NetSendo | http://localhost:8080 | Main dashboard |
| Mailpit | http://localhost:8025 | Test email inbox |
| MySQL | localhost:3306 | Database |
| Reverb | localhost:8085 | WebSocket Server |
| Vite HMR | http://localhost:5173 | Hot Module Replacement |
π Licensing
NetSendo requires an active license to operate.
License Plans
| Plan | Price | Features |
|---|---|---|
| SILVER | Free | All basic features, unlimited contacts |
| GOLD | $97/mo | Advanced automations, priority support, API, white-label |
License Activation
- Launch the application and go to the main page
- Register an administrator account
- On the license page, select SILVER (free) or GOLD plan
- Enter your email - the license will be automatically activated
π οΈ Docker Commands
Production
# Start production stack
docker compose up -d
# Stop
docker compose down
# View logs
docker compose logs -f app
# Shell access
docker exec -it netsendo-app bash
# Artisan commands
docker exec netsendo-app php artisan <command>
Development
# Start development stack
docker compose -f docker-compose.dev.yml up -d --build
# Stop
docker compose -f docker-compose.dev.yml down
# View logs
docker compose -f docker-compose.dev.yml logs -f app
# Shell access
docker exec -it netsendo-app bash
# Artisan commands
docker exec netsendo-app php artisan <command>
# Composer
docker exec netsendo-app composer <command>
# NPM
docker exec netsendo-app npm <command>
π Project Structure
NetSendo/
βββ docker/ # Docker configuration
β βββ nginx/ # Nginx config
β βββ php/ # PHP Dockerfile + entrypoint
βββ src/ # Laravel source code
β βββ app/ # Application logic
β βββ config/ # Configuration
β βββ database/ # Migrations and seeders
β βββ resources/ # Frontend (Vue.js, CSS)
β βββ routes/ # Routing
β βββ public/ # Public files
βββ backups/ # Database backups
β βββ db/ # MySQL backup files
βββ docker-compose.yml # Production configuration (main)
βββ docker-compose.dev.yml # Development configuration
βββ README.md # This file
π§ Configuration
Configuration is stored in src/.env (automatically created from src/.env.docker).
[!CAUTION] > You MUST configure these variables before building Docker!
Required Environment Variables
# REQUIRED: Application Key (must start with base64:)
# Generate with: openssl rand -base64 32
APP_KEY=base64:YOUR_GENERATED_KEY_HERE
APP_URL=http://localhost:8080
APP_LOCALE=en
# Database (Docker) - CHANGE THE PASSWORD!
DB_HOST=db
DB_DATABASE=netsendo
DB_USERNAME=netsendo
DB_PASSWORD=your_secure_password_here
# Redis
REDIS_HOST=redis
# Mail (Mailpit in Docker)
MAIL_HOST=mailpit
MAIL_PORT=1025
Optional: AI Integration Keys
# OpenAI (for GPT features)
OPENAI_API_KEY=sk-...
# Anthropic Claude
ANTHROPIC_API_KEY=sk-ant-...
# Google AI (Gemini)
GOOGLE_AI_API_KEY=...
WebSocket Configuration (Reverb)
[!IMPORTANT] > WebSocket server is required for real-time features like Live Visitors, notifications, and real-time analytics.
NetSendo uses Laravel Reverb as a WebSocket server. The configuration is already included in docker-compose.yml and docker-compose.dev.yml.
Required environment variables:
# Enable broadcasting via Reverb
BROADCAST_CONNECTION=reverb
# Backend configuration (for PHP/Laravel)
REVERB_APP_ID=netsendo
REVERB_APP_KEY=netsendo-reverb-key
REVERB_APP_SECRET=netsendo-reverb-secret
REVERB_HOST=reverb # Docker service name
REVERB_PORT=8085
REVERB_SCHEME=http
# Frontend configuration (for browser)
VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST=localhost # Or your domain for production
VITE_REVERB_PORT=8085
VITE_REVERB_SCHEME=http
Key points:
REVERB_HOST=reverb- for backend (Docker internal network)VITE_REVERB_HOST=localhost- for browser (external access)- Port
8085is exposed by thereverbcontainer - After changing
VITE_*variables, rebuild frontend:npm run build
Production Configuration
[!TIP] > Auto-detected settings: NetSendo automatically configures these from
APP_URL:
SESSION_DOMAIN- extracted from APP_URL hostnameSESSION_SECURE_COOKIE- set totrueif APP_URL useshttps://
# === REQUIRED ===
APP_URL=https://your-domain.com # Your production URL (with https://)
APP_KEY=base64:... # Generate with: openssl rand -base64 32
APP_ENV=production
APP_DEBUG=false
# Database
DB_CONNECTION=mysql
DB_HOST=db
DB_DATABASE=netsendo_prod
DB_USERNAME=netsendo_user
DB_PASSWORD=your_secure_password # CHANGE THIS!
# Redis (recommended for sessions/cache)
REDIS_HOST=redis
SESSION_DRIVER=redis
CACHE_DRIVER=redis
QUEUE_CONNECTION=redis
# Mail configuration
MAIL_MAILER=smtp
MAIL_HOST=your-smtp-server.com
MAIL_PORT=587
MAIL_USERNAME=your_username
MAIL_PASSWORD=your_password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=noreply@your-domain.com
MAIL_FROM_NAME="${APP_NAME}"
# === OPTIONAL OVERRIDES ===
# These are auto-detected from APP_URL, only set if you need custom values:
# SESSION_DOMAIN=.your-domain.com # Auto-detected from APP_URL
# SESSION_SECURE_COOKIE=true # Auto-detected (true for https://)
# TRUSTED_PROXIES=* # Set if behind load balancer/CDN
[!IMPORTANT] > Reverse Proxy Configuration: If using nginx/Caddy as reverse proxy, ensure your proxy passes the correct headers:
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Real-IP $remote_addr;
π Internationalization
NetSendo supports the following languages:
- πΊπΈ English (default)
- π΅π± Polski
- π©πͺ Deutsch
- πͺπΈ EspaΓ±ol
Language switcher is available in the application header.
π Updates
Check for available updates:
- In the app: Settings β Updates
- On GitHub: Releases
Update Process (Standard Docker Workflow)
# Stop containers
docker compose down
# Pull latest images
docker compose pull
# Start with new version
docker compose up -d
[!TIP] That's it! No rebuilding or cache clearing required. Works just like n8n and other Docker apps.
Update to specific version:
NETSENDO_VERSION=1.1.0 docker compose up -d
π For detailed instructions, see DOCKER_INSTALL.md
π§ Troubleshooting
Container Won't Start
# Check logs
docker compose logs app
# Verify database is healthy
docker compose exec db mysqladmin ping -h localhost
Clear Caches
docker compose exec app php artisan cache:clear
docker compose exec app php artisan config:clear
docker compose exec app php artisan view:clear
Browser Cache Issues
If changes don't appear after update:
- Hard refresh:
Ctrl+Shift+R(Windows/Linux) orCmd+Shift+R(Mac) - Clear browser cache or use incognito mode
WebSocket Connection Failed
If you see errors like:
WebSocket connection to 'ws://localhost:8080/app/...' failed
Cause: Reverb is not configured or not running.
Solution:
-
Check Reverb configuration in
.env:BROADCAST_CONNECTION=reverb REVERB_PORT=8085 VITE_REVERB_PORT=8085 -
Verify Reverb container is running:
docker compose ps # Should show netsendo-reverb with status "Up" -
Check Reverb logs:
docker compose logs reverb # Should show: "Starting server on 0.0.0.0:8085" -
Restart Reverb and rebuild frontend:
docker compose restart reverb docker compose exec app npm run build -
Verify port 8085 is accessible:
curl http://localhost:8085 # Should return Reverb response
π For more troubleshooting, see DOCKER_INSTALL.md
π€ Support
- π Documentation: https://docs.netsendo.com
- π¬ Forum: https://forum.netsendo.com
- π Courses: https://netsendo.com/courses
- π Report Bug: https://support.netsendo.com
- π§ Email: support@netsendo.com
π€ Contributing
We welcome contributions! Whether it's fixing bugs, improving documentation, or adding new features.
π Read our Contributing Guide to get started.
Quick ways to help:
- β Star this repo β helps others discover NetSendo
- π Report bugs β open an issue
- π Improve docs β fix typos, add examples
- π Translate β help with translations
Community
- π¬ Telegram β questions & discussions
- π Forum β longer conversations
- π Courses β learn NetSendo
π License
NetSendo is proprietary software. See LICENSE for details.
π΅π± O NetSendo (PL)
NetSendo to nowoczesna platforma e-mail marketingu i automatyzacji. UmoΕΌliwia tworzenie kampanii emailowych, SMS, automatyzacji sprzedaΕΌowych i szczegΓ³Εowej analityki.
Instalacja
git clone https://github.com/NetSendo/NetSendo.git
cd NetSendo
docker compose up -d --build
Aplikacja dostΔpna pod: http://localhost:8080
π©πͺ Γber NetSendo (DE)
NetSendo ist eine moderne E-Mail-Marketing- und Automatisierungsplattform. Erstellen Sie E-Mail-Kampagnen, SMS, Verkaufsautomatisierungen und detaillierte Analysen.
Installation
git clone https://github.com/NetSendo/NetSendo.git
cd NetSendo
docker compose up -d --build
Anwendung verfΓΌgbar unter: http://localhost:8080
πͺπΈ Acerca de NetSendo (ES)
NetSendo es una plataforma moderna de email marketing y automatizaciΓ³n. Cree campaΓ±as de correo electrΓ³nico, SMS, automatizaciones de ventas y anΓ‘lisis detallados.
InstalaciΓ³n
git clone https://github.com/NetSendo/NetSendo.git
cd NetSendo
docker compose up -d --build
AplicaciΓ³n disponible en: http://localhost:8080
Made with β€οΈ by NetSendo Team

