Installation
There are several ways to install and run MCP Tool Kit.
🚀 Quick Install - No Git Required!
The easiest way to install MCP Tool Kit is using our one-line installers:
🖥️ Windows
Open PowerShell as Administrator and run:
irm https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.ps1 | iex
🍎 macOS
Open Terminal and run:
bash <(curl -s https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)
🐧 Linux
Open Terminal and run:
bash <(wget -qO- https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)
✨ What the Quick Installer Does
The installer will automatically:
- Download MCP Tool Kit - No Git required!
- Check for Docker - Helps install if missing
- Create shortcuts - Desktop and Start Menu/Applications
- Set up launcher - Easy menu-driven interface
- Configure paths - Optionally adds to system PATH
📋 Prerequisites
The only requirement is:
- Docker Desktop - The installer will help you install it if needed
Supported Operating Systems:
- Windows 10/11 (with PowerShell 5.0+)
- macOS 10.14+
- Linux with bash shell
📦 Alternative Installation Methods
Method 1: Download Pre-packaged Release
-
Download the latest release:
-
Extract and run:
- Windows: Run
install.bat
- Mac/Linux: Run
./install.sh
- Windows: Run
Method 2: Git Clone (for developers)
git clone https://github.com/getfounded/mcp-tool-kit.git
cd mcp-tool-kit
Method 3: Docker-Only Installation
If you already have Docker and want the minimal setup:
docker run -it --name mcp-toolkit ghcr.io/getfounded/mcp-tool-kit:latest
🚦 Running MCP Tool Kit
After installation, use the launcher:
Windows
Double-click the desktop shortcut or run:
C:\Users\%USERNAME%\mcp-tool-kit\launch.ps1
Mac/Linux
Open from Applications (macOS) or run:
~/mcp-tool-kit/launch.sh
Choose Your Mode
The launcher will present options:
- stdio mode - For Claude Desktop integration
- SSE mode - For web access at http://localhost:8080
- Update - Update to the latest version
- View logs - Check server logs
Manual Installation
Using Docker Compose
# Start the server
docker-compose up -d
# View logs
docker-compose logs -f
# Stop the server
docker-compose down
Using Docker Directly
# Build the image
docker build -t mcp-tool-kit .
# Run the container
docker run -it --rm \
-v ~/.env:/app/.env \
-v ~/Documents:/app/documents \
mcp-tool-kit
Environment Configuration
- Copy the environment template:
cp .env.template .env
- Edit
.env
to add your API keys:
BRAVE_SEARCH_API_KEY=your_key_here
NEWS_API_KEY=your_key_here
FRED_API_KEY=your_key_here
# Add other API keys as needed
Verifying Installation
After starting the server, you can verify it's working:
For stdio mode
Check the Docker logs:
docker logs mcp-server
For SSE mode
Visit http://localhost:8080 in your browser.
Troubleshooting
Docker not found
- Ensure Docker Desktop is installed and running
- On Windows, make sure Docker is in your PATH
Permission denied on Linux/Mac
chmod +x launch.sh
sudo ./launch.sh
Port already in use
Change the port in docker-compose.yml
or stop the conflicting service.
Next Steps
- Quick Start Guide - Connect to Claude Desktop
- Configuration - Configure tools and settings